Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
tastybento committed Aug 1, 2021
1 parent e61e761 commit 0b9019f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import static org.mockito.ArgumentMatchers.eq;
Expand Down Expand Up @@ -275,7 +276,7 @@ public void testSetBiomeRecipe() {
*/
@Test
public void testGetBiomeRecipe() {
assertNull(gh.getBiomeRecipe());
assertNotNull(gh.getBiomeRecipe());
}

/**
Expand Down

0 comments on commit 0b9019f

Please sign in to comment.