File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -354,7 +354,10 @@ fn fungibles_balanced_issue_works() {
354
354
let new_total_issuance = <Tokens as fungibles:: Inspect < _ > >:: total_issuance ( DOT ) ;
355
355
assert_eq ! ( old_total_issuance + amount, new_total_issuance) ;
356
356
357
- System :: assert_last_event ( RuntimeEvent :: Tokens ( crate :: Event :: Issued { asset : DOT , amount } ) ) ;
357
+ System :: assert_last_event ( RuntimeEvent :: Tokens ( crate :: Event :: Issued {
358
+ currency_id : DOT ,
359
+ amount,
360
+ } ) ) ;
358
361
} ) ;
359
362
}
360
363
@@ -373,7 +376,10 @@ fn fungibles_balanced_rescind_works() {
373
376
let new_total_issuance = <Tokens as fungibles:: Inspect < _ > >:: total_issuance ( DOT ) ;
374
377
assert_eq ! ( old_total_issuance - amount, new_total_issuance) ;
375
378
376
- System :: assert_last_event ( RuntimeEvent :: Tokens ( crate :: Event :: Rescinded { asset : DOT , amount } ) ) ;
379
+ System :: assert_last_event ( RuntimeEvent :: Tokens ( crate :: Event :: Rescinded {
380
+ currency_id : DOT ,
381
+ amount,
382
+ } ) ) ;
377
383
} ) ;
378
384
}
379
385
You can’t perform that action at this time.
0 commit comments