This commit is contained in:
tastybento 2021-08-01 15:29:36 -07:00
parent e61e76134b
commit 0b9019fbfa
1 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@ package world.bentobox.greenhouses.data;
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;
@ -275,7 +276,7 @@ public class GreenhouseTest {
*/
@Test
public void testGetBiomeRecipe() {
assertNull(gh.getBiomeRecipe());
assertNotNull(gh.getBiomeRecipe());
}
/**