Commit aeccf61c 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 9c00d177
......@@ -153,7 +153,7 @@ contract Hashing_Invariant is StdInvariant, Test {
function invariant_hash_xdomain_msg_0() external {
// ASSERTION: A call to hashCrossDomainMessage and hashCrossDomainMessageV0
// should always match when the version passed is 0
assertEq(actor.failedCrossDomainHashV0(), false);
assertFalse(actor.failedCrossDomainHashV0());
}
/**
......
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