Skip to content

Commit

Permalink
update integration test
Browse files Browse the repository at this point in the history
Signed-off-by: svetoslav-nikol0v <svetoslav.nikolov@limechain.tech>
  • Loading branch information
svetoslav-nikol0v committed Jan 12, 2024
1 parent 1e58a4f commit 3162298
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/integration/TokenUpdateIntegrationTest.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ describe("TokenUpdate", function () {
.setFreezeKey(key2)
.setWipeKey(key3)
.setSupplyKey(key4)
.setPauseKey(key4)
.setFreezeDefault(false)
.execute(env.client);

Expand All @@ -65,6 +66,7 @@ describe("TokenUpdate", function () {
expect(info.freezeKey.toString()).to.eql(key2.publicKey.toString());
expect(info.wipeKey.toString()).to.eql(key3.publicKey.toString());
expect(info.supplyKey.toString()).to.eql(key4.publicKey.toString());
expect(info.pauseKey.toString()).to.eql(key4.publicKey.toString());
expect(info.defaultFreezeStatus).to.be.false;
expect(info.defaultKycStatus).to.be.false;
expect(info.isDeleted).to.be.false;
Expand Down

0 comments on commit 3162298

Please sign in to comment.