From 0af2be845e4b39c55cf6b97aa17f1c4eddfe9306 Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Thu, 22 Dec 2022 20:23:24 +0000 Subject: [PATCH] fix: limit enum name --- --- a/tests/src/eth/collectionLimits.test.ts +++ b/tests/src/eth/collectionLimits.test.ts @@ -102,7 +102,7 @@ // Cannot set non-existing limit await expect(collectionEvm.methods .setCollectionLimit({field: 9, value: {status: true, value: 1}}) - .call()).to.be.rejectedWith('Returned error: VM Exception while processing transaction: revert Value not convertible into enum "CollectionLimits"'); + .call()).to.be.rejectedWith('Returned error: VM Exception while processing transaction: revert Value not convertible into enum "CollectionLimitField"'); // Cannot disable limits await expect(collectionEvm.methods -- gitstuff