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

LibJS: Add space in output of toEval in test-common.js

This commit is contained in:
davidot 2022-11-17 10:21:45 +01:00 committed by Linus Groh
parent 8fa6861f66
commit 49fc0e2514

View file

@ -381,7 +381,7 @@ class ExpectationError extends Error {
this.__expect(
this.inverted ? !success : success,
() =>
`Expected _${valueToString(this.target)}_` +
`Expected _${valueToString(this.target)}_ ` +
(this.inverted ? "not to eval but it did" : "to eval but it didn't")
);
}