Skip to content

Commit 0cc5658

Browse files
committed
Fix unit tests
1 parent 2b6a9a0 commit 0cc5658

File tree

1 file changed

+2
-2
lines changed
  • headless-services/concourse-language-server/src/test/java/org/springframework/ide/vscode/concourse

1 file changed

+2
-2
lines changed

headless-services/concourse-language-server/src/test/java/org/springframework/ide/vscode/concourse/ConcourseEditorTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ void reconcileResourceTypeType() throws Exception {
371371
" type: # <- bad\n"
372372
);
373373
editor.assertProblems(
374-
"^ # <- bad|cannot be blank"
374+
"# <- bad\n^^|cannot be blank"
375375
);
376376

377377
editor = harness.newEditor(
@@ -393,7 +393,7 @@ void reconcileDisplayType() throws Exception {
393393
);
394394

395395
editor.assertProblems(
396-
"^ # <- bad|String should not be empty"
396+
"# <- bad\n^^|String should not be empty"
397397
);
398398
}
399399

0 commit comments

Comments
 (0)