From 49fc0e251447e7e68c5935a4069ab26dda489456 Mon Sep 17 00:00:00 2001 From: davidot Date: Thu, 17 Nov 2022 10:21:45 +0100 Subject: [PATCH] LibJS: Add space in output of toEval in test-common.js --- Userland/Libraries/LibJS/Tests/test-common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibJS/Tests/test-common.js b/Userland/Libraries/LibJS/Tests/test-common.js index c1979d3cec..8d1ea280a0 100644 --- a/Userland/Libraries/LibJS/Tests/test-common.js +++ b/Userland/Libraries/LibJS/Tests/test-common.js @@ -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") ); }