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:
parent
2eaa528a0e
commit
73c8650ea0
1 changed files with 1 additions and 1 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue