ItemFactoryTest: remove bogus test case

This commit is contained in:
Dylan K. Taylor 2022-06-25 14:34:19 +01:00
parent b268818eda
commit cac72d73fb
No known key found for this signature in database
GPG Key ID: 8927471A91CAFD3D

View File

@ -28,15 +28,6 @@ use pocketmine\block\BlockFactory;
class ItemFactoryTest extends TestCase{
/**
* Tests that blocks are considered to be valid registered items
*/
public function testItemBlockRegistered() : void{
for($id = 0; $id < 256; ++$id){
self::assertEquals(BlockFactory::getInstance()->isRegistered($id), ItemFactory::getInstance()->isRegistered($id));
}
}
/**
* Test that durable items are correctly created by the item factory
*/