From 8eed0a6c6cbdd1afcf082d5f5c1ffaf4c15b44ca Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Tue, 23 Mar 2021 11:57:18 +0000 Subject: [PATCH] tests: token now always exists in case of fungible --- --- a/pallets/nft/src/tests.rs +++ b/pallets/nft/src/tests.rs @@ -697,7 +697,7 @@ assert_ok!(TemplateModule::burn_item(origin1.clone(), 1, 1, 5)); assert_noop!( TemplateModule::burn_item(origin1.clone(), 1, 1, 5), - Error::::TokenNotFound + Error::::TokenValueNotEnough ); assert_eq!(TemplateModule::balance_count(1, 1), 0); -- gitstuff