We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a61a685 commit b140142Copy full SHA for b140142
1 file changed
extensions/ql-vscode/src/vscode-tests/no-workspace/test-adapter.test.ts
@@ -98,8 +98,7 @@ describe('test-adapter', () => {
98
test: gPath,
99
message: `\ncompilation error: ${gPath}\nERROR: abc\n`,
100
decorations: [
101
- { line: 1, message: 'abc'},
102
- { line: 2, severity: 'ERROR'}
+ { line: 1, message: 'abc', severity: 'ERROR' }
103
]
104
}]);
105
expect(listenerSpy.getCall(3).args).to.deep.eq([{
@@ -152,8 +151,7 @@ describe('test-adapter', () => {
152
151
// a compile error
153
failureStage: 'COMPILATION',
154
messages: [
155
- { position: { line: 1 }, message: 'abc'},
156
- { position: { line: 2 }, severity: 'ERROR' }
+ { position: { line: 1 }, message: 'abc', severity: 'ERROR' }
157
158
});
159
yield Promise.resolve({
0 commit comments