Skip to content

Commit 00dcc2c

Browse files
Fix spacing around truthy debug message
1 parent 2027609 commit 00dcc2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration-tests/js-compute/fixtures/app/src/assertions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export { assert as strictEqual };
5555
export function ok(truthy, code) {
5656
if (!truthy) {
5757
throw new Error(
58-
`Expected ${code ? ' ' + code : ''}to be truthy - Found \`${JSON.stringify(prettyPrintSymbol(truthy))}\``,
58+
`Expected ${code ? code + ' ' : ''}to be truthy - Found \`${JSON.stringify(prettyPrintSymbol(truthy))}\``,
5959
);
6060
}
6161
}

0 commit comments

Comments
 (0)