Skip to content

Commit

Permalink
fix: error test string syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
chacebot committed Sep 5, 2024
1 parent ab97657 commit 986b993
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ void testAPPCInvalidOne() {
"error1",
new Diagnostic(
new Range(),
"Extraneous input 'PROFILE'",
"Extraneous input PROFILE",
DiagnosticSeverity.Error,
ErrorSource.PARSING.getText()));
CICSTestUtils.errorTest(APPC_INVALID_ONE, expectedDiagnostic);
Expand All @@ -84,7 +84,7 @@ void testLUT61InvalidOne() {
"errorOne",
new Diagnostic(
new Range(),
"Extraneous input 'STATE'",
"Extraneous input STATE",
DiagnosticSeverity.Error,
ErrorSource.PARSING.getText()));
CICSTestUtils.errorTest(LUT61_INVALID_ONE, expectedDiagnostic);
Expand Down

0 comments on commit 986b993

Please sign in to comment.