Skip to content

Commit c3c969c

Browse files
committed
update tests
1 parent 37c3ccb commit c3c969c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pallets/rmrk-core/src/tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ fn basic_collection() -> DispatchResult {
5454
fn basic_mint() -> DispatchResult {
5555
RMRKCore::mint_nft(
5656
Origin::signed(ALICE),
57-
Some(ALICE),
57+
None, // if not specified defaults to minter
5858
COLLECTION_ID_0,
5959
Some(ALICE),
6060
Some(Permill::from_float(1.525)),

pallets/rmrk-market/src/tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ fn basic_collection() -> DispatchResult {
4040
fn basic_mint() -> DispatchResult {
4141
RmrkCore::mint_nft(
4242
Origin::signed(ALICE),
43-
None, // if not specified defaults to minter
43+
Some(ALICE),
4444
COLLECTION_ID_0,
4545
Some(ALICE),
4646
Some(Permill::from_float(1.525)),

0 commit comments

Comments
 (0)