Commit 0f91494b authored by Rati Montreewat's avatar Rati Montreewat Committed by GitHub

Refactor: using assertFalse instead

Co-authored-by: default avatarrefcell.eth <abigger87@gmail.com>
parent aeccf61c
...@@ -166,6 +166,6 @@ contract Hashing_Invariant is StdInvariant, Test { ...@@ -166,6 +166,6 @@ contract Hashing_Invariant is StdInvariant, Test {
function invariant_hash_xdomain_msg_1() external { function invariant_hash_xdomain_msg_1() external {
// ASSERTION: A call to hashCrossDomainMessage and hashCrossDomainMessageV1 // ASSERTION: A call to hashCrossDomainMessage and hashCrossDomainMessageV1
// should always match when the version passed is 1 // should always match when the version passed is 1
assertEq(actor.failedCrossDomainHashV1(), false); assertFalse(actor.failedCrossDomainHashV1());
} }
} }
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