Skip to content

Commit 208fad7

Browse files
committed
test/runTest.ts: add missing space in error message
Change-Id: I78c358e40b368a8ef9eb5c188126cae54762e280 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/540077 TryBot-Result: kokoro <[email protected]> Commit-Queue: Suzy Mueller <[email protected]> Reviewed-by: Robert Findley <[email protected]> Run-TryBot: Suzy Mueller <[email protected]>
1 parent 9a76f3b commit 208fad7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/runTest.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ async function main() {
3737
]
3838
});
3939
} catch (err) {
40-
console.error('Failed to run integration tests' + err);
40+
console.error('Failed to run integration tests: ' + err);
4141
failed = true;
4242
}
4343

@@ -59,7 +59,7 @@ async function main() {
5959
]
6060
});
6161
} catch (err) {
62-
console.error('Failed to run gopls tests' + err);
62+
console.error('Failed to run gopls tests: ' + err);
6363
failed = true;
6464
}
6565

0 commit comments

Comments
 (0)