Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove only
  • Loading branch information
Leo Arias committed Sep 3, 2018
commit cb5ada8da153e65c164d27a7e50f72a85db0fe6a
2 changes: 1 addition & 1 deletion test/access/Whitelist.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ contract('Whitelist', function ([_, owner, whitelistedAddress1, whitelistedAddre
this.mock = await WhitelistMock.new({ from: owner });
});

context.only('in normal conditions', function () {
context('in normal conditions', function () {
it('should add address to the whitelist', async function () {
await this.mock.addAddressToWhitelist(whitelistedAddress1, { from: owner });
(await this.mock.isWhitelisted(whitelistedAddress1)).should.equal(true);
Expand Down