Renamed behaviour to behavior. (#1151)

This commit is contained in:
Nicolás Venturo
2018-08-03 14:41:54 -03:00
committed by Francisco Giordano
parent 448a7b3048
commit ba85aef95e
21 changed files with 18 additions and 18 deletions

View File

@ -1,6 +1,6 @@
const { ether } = require('../../helpers/ether');
const { shouldBehaveLikeMintableToken } = require('./MintableToken.behaviour');
const { shouldBehaveLikeCappedToken } = require('./CappedToken.behaviour');
const { shouldBehaveLikeMintableToken } = require('./MintableToken.behavior');
const { shouldBehaveLikeCappedToken } = require('./CappedToken.behavior');
const CappedToken = artifacts.require('CappedToken');