Remove unit test based on now incorrect assumptions

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot
2016-11-18 09:11:17 +11:00
parent 2513cf0b73
commit a75c80e93d
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));
}
}