File tree 1 file changed +2
-1
lines changed
src/test/java/com/github/fge/jsonschema/core/keyword/syntax
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 45
45
import com .google .common .base .Function ;
46
46
import com .google .common .collect .Iterables ;
47
47
import org .mockito .ArgumentCaptor ;
48
+ import org .mockito .ArgumentMatchers ;
48
49
import org .mockito .Mockito ;
49
50
import org .testng .annotations .BeforeMethod ;
50
51
import org .testng .annotations .DataProvider ;
@@ -202,7 +203,7 @@ public void checkingWillNotDiveIntoUnknownKeywords()
202
203
final ValueHolder <SchemaTree > holder = ValueHolder .hold ("schema" , tree );
203
204
204
205
processor .process (report , holder );
205
- verify (checker , never ()).checkSyntax (Mockito .<JsonPointer >anyCollection (),
206
+ verify (checker , never ()).checkSyntax (ArgumentMatchers .<JsonPointer >anyCollection (),
206
207
any (MessageBundle .class ), anyReport (), anySchema ());
207
208
}
208
209
You can’t perform that action at this time.
0 commit comments