Logging: Add a space after a URL for easier copying

This commit is contained in:
Henry Mercer
2024-10-10 19:48:01 +01:00
parent 222ac621e3
commit 4dca88a5fc
6 changed files with 8 additions and 8 deletions

View File

@@ -161,7 +161,7 @@ ava_1.default.beforeEach(() => {
// bundle contains..
t.is(result.toolsVersion, expectedVersion);
// Ensure message logging CodeQL CLI version was present in user logs.
const expected_message = `Using CodeQL CLI version 2.16.0 sourced from ${bundleUrl}.`;
const expected_message = `Using CodeQL CLI version 2.16.0 sourced from ${bundleUrl} .`;
t.assert(loggedMessages.some((msg) => typeof msg.message === "string" &&
msg.message.includes(expected_message)));
});