git.delta.rocks / unique-network / refs/commits / 055622b1e43d

difftreelog

Unit tests fixed

str-mv2021-12-03parent: #12f45ba.patch.diff
in: master

2 files changed

modifiedpallets/unique/src/mock.rsdiffbeforeafterboth
193}193}
194194
195impl pallet_template::Config for Test {195impl pallet_template::Config for Test {
196 type Event = ();
196 type WeightInfo = ();197 type WeightInfo = ();
197}198}
198199
modifiedpallets/unique/src/tests.rsdiffbeforeafterboth
2259 new_test_ext().execute_with(|| {2259 new_test_ext().execute_with(|| {
2260 let origin1 = Origin::signed(1);2260 let origin1 = Origin::signed(1);
22612261
2262 for i in 1..COLLECTION_NUMBER_LIMIT {2262 for i in 1..=COLLECTION_NUMBER_LIMIT {
2263 create_test_collection(&CollectionMode::NFT, CollectionId(i));2263 create_test_collection(&CollectionMode::NFT, CollectionId(i));
2264 }2264 }
22652265