Commit 9c00d177 authored by Rati Montreewat's avatar Rati Montreewat Committed by GitHub

Refactor: using assertFalse

Co-authored-by: default avatarrefcell.eth <abigger87@gmail.com>
parent de31de92
...@@ -140,7 +140,7 @@ contract Hashing_Invariant is StdInvariant, Test { ...@@ -140,7 +140,7 @@ contract Hashing_Invariant is StdInvariant, Test {
*/ */
function invariant_hash_xdomain_msg_high_version() external { function invariant_hash_xdomain_msg_high_version() external {
// ASSERTION: The round trip aliasing done in testRoundTrip(...) should never fail. // ASSERTION: The round trip aliasing done in testRoundTrip(...) should never fail.
assertEq(actor.failedCrossDomainHashHighVersion(), false); assertFalse(actor.failedCrossDomainHashHighVersion());
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment