Update version of ConfigMe, Mockito and sqlite-jdbc

This commit is contained in:
ljacqu
2016-10-30 13:44:13 +01:00
parent 2651786456
commit 5cce7e1fae
62 changed files with 160 additions and 260 deletions
@@ -62,7 +62,6 @@ public class PermissionsManagerTest {
// given
PermissionNode node = TestPermissions.WORLD_DOMINATION;
CommandSender sender = mock(CommandSender.class);
given(sender.isOp()).willReturn(true);
// when
boolean result = permissionsManager.hasPermission(sender, node);
@@ -116,7 +115,6 @@ public class PermissionsManagerTest {
// given
PermissionNode node = TestPermissions.WORLD_DOMINATION;
Player player = mock(Player.class);
given(player.isOp()).willReturn(true);
// when
boolean result = permissionsManager.hasPermission(player, node);