Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gavofyork committed Apr 8, 2021
1 parent 72b55df commit 1874c36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pallets/parachain-system/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1276,7 +1276,7 @@ mod tests {
let events = System::events();
assert_eq!(
events[0].event,
Event::parachain_system(crate::Event::ValidationFunctionStored(1123))
Event::parachain_system(crate::RawEvent::ValidationFunctionStored(1123).into())
);
},
)
Expand All @@ -1287,7 +1287,7 @@ mod tests {
let events = System::events();
assert_eq!(
events[0].event,
Event::parachain_system(crate::Event::ValidationFunctionApplied(1234))
Event::parachain_system(crate::RawEvent::ValidationFunctionApplied(1234).into())
);
},
);
Expand Down

0 comments on commit 1874c36

Please sign in to comment.