Skip to content

Commit

Permalink
test: fix invariant test assertion
Browse files Browse the repository at this point in the history
Signed-off-by: 0xRaccoon <[email protected]>
  • Loading branch information
0xRaccoon committed Oct 29, 2024
1 parent 517a9a3 commit eb5636b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/invariant/fuzz/properties/PropertiesAllo.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ contract PropertiesAllo is HandlersParent {
assertEq(_pool.metadata.pointer, _metadata.pointer, "property-id 13: updatePoolMetadata pointer failed");
} else {
assertTrue(
(_isManager(msg.sender, _poolId) && msg.sender != _admin) || _usingAnchor,
(!_isManager(msg.sender, _poolId) && msg.sender != _admin) || _usingAnchor,
"property-id 13: updatePoolMetadata failed"
);
}
Expand Down

0 comments on commit eb5636b

Please sign in to comment.