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
commit 49fc0e2514
Notes: sideshowbarker 2024-07-17 23:07:41 +09:00

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")
);
}