Skip to content

Commit

Permalink
Fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
drewstone committed Oct 19, 2021
1 parent 743f47e commit ac6890a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/token/GovernedTokenWrapper.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers';

const helpers = require('../../lib/darkwebb/utils');

describe('Anchor', () => {
describe('GovernedTokenWrapper', () => {
let token: ERC20Class;
let wrappedToken: GovernedTokenWrapperClass;
let tokenDenomination = '1000000000000000000' // 1 ether
Expand All @@ -40,7 +40,7 @@ import { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers';
});

describe('#constructor', () => {
it.only('should initialize', async () => {
it('should initialize', async () => {
assert.strictEqual((await wrappedToken.contract.name()), wrappedTokenName);
assert.strictEqual((await wrappedToken.contract.symbol()), wrappedTokenSymbol);
assert.strictEqual((await wrappedToken.contract.governor()), sender.address);
Expand Down

0 comments on commit ac6890a

Please sign in to comment.