1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:07:35 +00:00

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
parent 2eaa528a0e
commit 73c8650ea0

View file

@ -90,7 +90,7 @@ class ExpectationError extends Error {
toBeCloseTo(value) {
this.__expect(
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(
typeof value === "number",