Skip to content

Commit 0dc4068

Browse files
committed
Fixed test expected outcome
1 parent f8f0024 commit 0dc4068

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/test/diagnostics.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ suite('Should get module diagnostics', () => {
2525
{
2626
message: 'Option Explicit is missing from module header.',
2727
range: toRange(2, 1, 2, 1),
28-
severity: vscode.DiagnosticSeverity.Warning,
28+
severity: vscode.DiagnosticSeverity.Hint,
2929
source: 'ex'
3030
}
3131
]);
@@ -97,7 +97,7 @@ suite('Should get class diagnostics', () => {
9797
{
9898
message: 'Option Explicit is missing from module header.',
9999
range: toRange(11, 1, 11, 1),
100-
severity: vscode.DiagnosticSeverity.Warning,
100+
severity: vscode.DiagnosticSeverity.Hint,
101101
source: 'ex'
102102
}
103103
]);

0 commit comments

Comments
 (0)