LibJS: Expect this.target to have typeof number in toBeCloseTo

The previous expectation of typeof value was inconsistent with the
expect message.
This commit is contained in:
Sam Kravitz 2023-08-02 17:19:10 -05:00 committed by Andreas Kling
commit 73c8650ea0
Notes: sideshowbarker 2024-07-17 14:36:19 +09:00

View file

@ -90,7 +90,7 @@ class ExpectationError extends Error {
toBeCloseTo(value) { toBeCloseTo(value) {
this.__expect( this.__expect(
typeof this.target === "number", typeof this.target === "number",
() => `toBeCloseTo: expected target of type number, got ${typeof value}` () => `toBeCloseTo: expected target of type number, got ${typeof this.target}`
); );
this.__expect( this.__expect(
typeof value === "number", typeof value === "number",