Skip to content

Commit

Permalink
Fix test. Avoid ambiguity.
Browse files Browse the repository at this point in the history
  • Loading branch information
tastybento committed Feb 19, 2022
1 parent e2b779a commit d64be1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ public void testOnIceBreakNotNetherNetherGreenhouse() {
ghe.onIceBreak(e);
verify(block).setType(Material.AIR);
assertTrue(e.isCancelled());
verify(world).playSound(any(), eq(Sound.BLOCK_GLASS_BREAK), eq(1F), eq(1F));
verify(world).playSound(any(Location.class), eq(Sound.BLOCK_GLASS_BREAK), eq(1F), eq(1F));

}

Expand Down

0 comments on commit d64be1c

Please sign in to comment.