Make tests style more uniform (#4812)

This commit is contained in:
Renan Souza
2024-01-02 13:31:33 -03:00
committed by GitHub
parent a72c9561b9
commit 04cb014144
18 changed files with 118 additions and 118 deletions

View File

@ -7,8 +7,8 @@ function shouldBehaveLikeVesting() {
await time.increaseTo.timestamp(timestamp);
const vesting = this.vestingFn(timestamp);
expect(await this.mock.vestedAmount(...this.args, timestamp)).to.be.equal(vesting);
expect(await this.mock.releasable(...this.args)).to.be.equal(vesting);
expect(await this.mock.vestedAmount(...this.args, timestamp)).to.equal(vesting);
expect(await this.mock.releasable(...this.args)).to.equal(vesting);
}
});