We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 381ad1c commit 36ff24eCopy full SHA for 36ff24e
test/clj/spy/protocol_test.clj
@@ -158,13 +158,13 @@
158
159
(deftest multi-protocols-test
160
(let [mock (protocol/mock
161
- ProtocolA
162
- (method-a [this x]
163
- :a)
+ ProtocolA
+ (method-a [this x]
+ :a)
164
165
- ProtocolB
166
- (method-b [this x]
167
- :b))]
+ ProtocolB
+ (method-b [this x]
+ :b))]
168
(is (= :a (method-a mock :testing)))
169
(is (= :b (method-b mock :test)))
170
(is (spy/called-once-with? (:method-a (protocol/spies mock))
0 commit comments