Fix the tests failing due to material name changes

This commit is contained in:
Bradley Hilton 2019-04-15 12:41:08 -05:00
parent eb92967e03
commit ec2b6ba0f4

View File

@ -95,12 +95,12 @@ public class TestUtilClass {
@Test @Test
public void testCorrectStringFromArray() { public void testCorrectStringFromArray() {
assertEquals("SEEDS,coal_ore,torch", Util.getStringFromArray(",", array)); assertEquals("WHEAT_SEEDS,coal_ore,torch", Util.getStringFromArray(",", array));
} }
@Test @Test
public void testCorrectStringFromList() { public void testCorrectStringFromList() {
assertEquals("SEEDS,coal_ore,torch", Util.getStringFromList(",", list)); assertEquals("WHEAT_SEEDS,coal_ore,torch", Util.getStringFromList(",", list));
} }
@Test @Test