Update chai matchers (#4899)

Co-authored-by: ernestognw <ernestognw@gmail.com>
This commit is contained in:
Renan Souza
2024-02-19 15:27:39 -03:00
committed by GitHub
parent 3def8f9d15
commit 141c947921
4 changed files with 9 additions and 9 deletions

View File

@ -15,7 +15,7 @@ describe('Panic', function () {
for (const [name, code] of Object.entries({
GENERIC: 0x0,
ASSERT: PANIC_CODES.ASSERTION_ERROR,
UNDER_OVERFLOW: PANIC_CODES.ARITHMETIC_UNDER_OR_OVERFLOW,
UNDER_OVERFLOW: PANIC_CODES.ARITHMETIC_OVERFLOW,
DIVISION_BY_ZERO: PANIC_CODES.DIVISION_BY_ZERO,
ENUM_CONVERSION_ERROR: PANIC_CODES.ENUM_CONVERSION_OUT_OF_BOUNDS,
STORAGE_ENCODING_ERROR: PANIC_CODES.INCORRECTLY_ENCODED_STORAGE_BYTE_ARRAY,