Browse Source

Changed test assertion description for clarity (#831)

Tal Ater 7 years ago
parent
commit
c9936e231d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      test/token/PausableToken.test.js

+ 2 - 2
test/token/PausableToken.test.js

@@ -18,7 +18,7 @@ contract('PausableToken', function ([_, owner, recipient, anotherAccount]) {
           assert.equal(paused, true);
         });
 
-        it('emits a paused event', async function () {
+        it('emits a Pause event', async function () {
           const { logs } = await this.token.pause({ from });
 
           assert.equal(logs.length, 1);
@@ -62,7 +62,7 @@ contract('PausableToken', function ([_, owner, recipient, anotherAccount]) {
           assert.equal(paused, false);
         });
 
-        it('emits an unpaused event', async function () {
+        it('emits an Unpause event', async function () {
           const { logs } = await this.token.unpause({ from });
 
           assert.equal(logs.length, 1);