difftreelog
fix burnItem NFT unit test
in: master
1 file changed
pallets/nft/src/tests.rsdiffbeforeafterboth709 // burn item709 // burn item710 assert_ok!(TemplateModule::burn_item(710 assert_ok!(TemplateModule::burn_item(711 origin1.clone(),711 origin1.clone(),712 collection_id,712 1,713 1,713 1,714 1714 5715 ));715 ));716 assert_noop!(716 assert_noop!(717 TemplateModule::burn_item(origin1, 1, 1, 5),717 TemplateModule::burn_item(origin1, collection_id, 1, 1),718 Error::<Test>::TokenNotFound718 Error::<Test>::TokenNotFound719 );719 );720720