Skip to content
This repository has been archived by the owner on Jul 15, 2024. It is now read-only.

Commit

Permalink
Fixed test.
Browse files Browse the repository at this point in the history
  • Loading branch information
tim.j committed Nov 29, 2019
1 parent 9ed828c commit c765e79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/values.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ describe("values", () => {
}
});

chai.assert.isObject(values.body.find(v => v.endDate === null));
chai.assert.isObject(values.body.find(v => v.endDate !== null));
chai.assert.equal(values.body.filter(v => v.endDate === null).length, 0, `expected 0 results with a null endDate`);
});

Expand Down

0 comments on commit c765e79

Please sign in to comment.