Skip to content

Commit

Permalink
fixing comments
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Stefanov <[email protected]>
  • Loading branch information
stefan-stefanooov committed Nov 7, 2023
1 parent 44503c4 commit c909531
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/solidity/oz/pausable/pausable.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ describe('@solidityequiv3 Pausable', function () {
it('should BE able to call function "setPausedMessage" with "whenNotPaused" modifier when unpaused', async function () {
const tx = await contract.setPausedMessage("Hello World")
await tx.wait()
const messate = await contract.message()
const message = await contract.message()

expect(messate).to.equal("Hello World")
expect(message).to.equal("Hello World")
})

it('should NOT be able to call function "setPausedMessage" with "whenNotPaused" modifier when paused', async function () {
Expand Down

0 comments on commit c909531

Please sign in to comment.