difftreelog
Unit tests fixed
in: master
2 files changed
pallets/unique/src/mock.rsdiffbeforeafterboth193}193}194194195impl pallet_template::Config for Test {195impl pallet_template::Config for Test {196 type Event = ();196 type WeightInfo = ();197 type WeightInfo = ();197}198}198199pallets/unique/src/tests.rsdiffbeforeafterboth--- a/pallets/unique/src/tests.rs
+++ b/pallets/unique/src/tests.rs
@@ -2259,7 +2259,7 @@
new_test_ext().execute_with(|| {
let origin1 = Origin::signed(1);
- for i in 1..COLLECTION_NUMBER_LIMIT {
+ for i in 1..=COLLECTION_NUMBER_LIMIT {
create_test_collection(&CollectionMode::NFT, CollectionId(i));
}