1
0
mirror of synced 2026-05-22 21:33:16 +00:00

Update to Mockito 2.10.0

Issue: gh-4608
This commit is contained in:
Rob Winch
2017-10-09 13:19:21 -05:00
parent 74aa8bc803
commit 445834784a
40 changed files with 78 additions and 114 deletions
@@ -79,7 +79,7 @@ public class AbstractAuthorizeTagTests {
tag.authorizeUsingUrlCheck();
verify(expected).isAllowed(eq(""), eq(uri), eq("GET"), any(Authentication.class));
verify(expected).isAllowed(eq(""), eq(uri), eq("GET"), any());
}
@Test
@@ -93,7 +93,7 @@ public class AbstractAuthorizeTagTests {
tag.authorizeUsingUrlCheck();
verify(expected).isAllowed(eq(""), eq(uri), eq("GET"), any(Authentication.class));
verify(expected).isAllowed(eq(""), eq(uri), eq("GET"), any());
}
@Test