Remove unit test based on now incorrect assumptions

This commit is contained in:
md_5
2016-11-18 09:11:17 +11:00
parent 162e961326
commit 64032adfd2
2 changed files with 2 additions and 10 deletions

View File

@@ -25,12 +25,4 @@ public class NMSCraftItemStackTest extends AbstractTestingBase {
assertThat(clone.getData(), is(itemStack.getData()));
assertThat(clone, is(itemStack));
}
@Test
public void testCloneNullItem() throws Exception {
net.minecraft.server.ItemStack nmsItemStack = null;
ItemStack itemStack = CraftItemStack.asCraftMirror(nmsItemStack);
ItemStack clone = itemStack.clone();
assertThat(clone, is(itemStack));
}
}