Skip to content

Commit

Permalink
fix for the latest DL
Browse files Browse the repository at this point in the history
  • Loading branch information
yito88 committed Nov 26, 2023
1 parent 83a32c8 commit eacbb45
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions scalardl/test/scalardl/cas_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
(def ^:dynamic execute-count (atom 0))

(def mock-client-service
(proxy [ClientService] [nil nil nil nil]
(proxy [ClientService] [nil nil nil]
(registerCertificate [])
(registerContract [_ _ _ _]
(swap! contract-count inc)
Expand All @@ -29,7 +29,7 @@
nil))))

(def mock-client-service-throws-unknown-status
(proxy [ClientService] [nil nil nil nil]
(proxy [ClientService] [nil nil nil]
(registerCertificate [])
(registerContract [_ _ _ _]
(swap! contract-count inc)
Expand All @@ -41,7 +41,7 @@
StatusCode/UNKNOWN_TRANSACTION_STATUS)))))

(def mock-client-service-throws-database-error
(proxy [ClientService] [nil nil nil nil]
(proxy [ClientService] [nil nil nil]
(registerCertificate [])
(registerContract [_ _ _ _]
(swap! contract-count inc)
Expand Down
4 changes: 2 additions & 2 deletions scalardl/test/scalardl/transfer_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
(def ^:dynamic execute-count (atom 0))

(def mock-client-service
(proxy [ClientService] [nil nil nil nil]
(proxy [ClientService] [nil nil nil]
(registerCertificate [])
(registerContract [_ _ _ _]
(swap! contract-count inc)
Expand All @@ -31,7 +31,7 @@
nil))))

(def mock-failure-client-service
(proxy [ClientService] [nil nil nil nil]
(proxy [ClientService] [nil nil nil]
(registerCertificate [])
(registerContract [_ _ _ _]
(swap! contract-count inc)
Expand Down

0 comments on commit eacbb45

Please sign in to comment.