Update VanillaRegistryTests

This commit is contained in:
mezz 2017-06-10 19:47:04 -07:00
parent 3fee319bc0
commit cd3905502e

View file

@ -31,10 +31,10 @@ public class VanillaRegistryTests
public void testSetup()
{
// All the blocks loaded
assertEquals("We have all the blocks via GameData", 236, Block.REGISTRY.getKeys().size());
assertEquals("We have all the blocks via GameData", 254, Block.REGISTRY.getKeys().size());
// All the items loaded
assertEquals("We have all the items via GameData", 392, Item.REGISTRY.getKeys().size());
assertEquals("We have all the items via GameData", 411, Item.REGISTRY.getKeys().size());
// Our lookups find the same stuff vanilla sees
final IForgeRegistry<Block> blocks = PersistentRegistryManager.findRegistry(Blocks.AIR);