Skip to content

Commit 5d9751d

Browse files
AssertionFailure -> AssertionFailed (#166)
1 parent 06a50c6 commit 5d9751d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

program-analysis/echidna/testing-modes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ function checkInvariant(..) public { // Any number of arguments is supported
7070
internalFunction(..);
7171
7272
// The following statement will always trigger a failure even if the execution ends with a revert
73-
emits AssertionFailure(..);
73+
emits AssertionFailed(..);
7474
7575
// The following statement will *only* trigger a failure using `assert` if using solc 0.8.x or newer
76-
// To make sure it works in older versions, use the AssertionFailure(..) event
76+
// To make sure it works in older versions, use the AssertionFailed(..) event
7777
anotherContract.function(..);
7878
7979
} // side effects are preserved

0 commit comments

Comments
 (0)