Skip to content
Prev Previous commit
Next Next commit
fix lint
  • Loading branch information
Amxx committed Jan 18, 2024
commit 23e8db94e39d59dcba76d39373b8d8c284a62b73
2 changes: 1 addition & 1 deletion test/utils/structs/Checkpoints.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ describe('Checkpoints', function () {
it('returns latest value', async function () {
const latest = this.checkpoints.at(-1);
expect(await this.methods.latest()).to.equal(latest.value);
expect(await this.methods.latestCheckpoint()).to.deep.equal([ true, latest.key, latest.value ]);
expect(await this.methods.latestCheckpoint()).to.deep.equal([true, latest.key, latest.value]);
});

it('cannot push values in the past', async function () {
Expand Down