File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
subprojects/inline/src/test/java/org/mockitoinline Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ public void testStaticMockDoesNotAffectDifferentThread() throws InterruptedExcep
130
130
assertEquals ("foo" , reference .get ());
131
131
dummy .when (Dummy ::foo ).thenReturn ("bar" );
132
132
assertEquals ("bar" , Dummy .foo ());
133
- dummy .verify (times ( 2 ), Dummy ::foo );
133
+ dummy .verify (Dummy ::foo , times ( 2 ) );
134
134
}
135
135
}
136
136
@@ -152,7 +152,7 @@ public void testStaticMockCanCoexistWithMockInDifferentThread() throws Interrupt
152
152
assertEquals ("qux" , reference .get ());
153
153
dummy .when (Dummy ::foo ).thenReturn ("bar" );
154
154
assertEquals ("bar" , Dummy .foo ());
155
- dummy .verify (times ( 2 ), Dummy ::foo );
155
+ dummy .verify (Dummy ::foo , times ( 2 ) );
156
156
}
157
157
}
158
158
You can’t perform that action at this time.
0 commit comments