Skip to content

Commit 358c9cc

Browse files
committed
GH-1431: fix broken tests for symbols in bosh editor
1 parent 6f06259 commit 358c9cc

File tree

1 file changed

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

1 file changed

+8
-8
lines changed

headless-services/bosh-language-server/src/test/java/org/springframework/ide/vscode/bosh/BoshEditorTest.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2016 Pivotal, Inc.
2+
* Copyright (c) 2016, 2025 Pivotal, Inc.
33
* All rights reserved. This program and the accompanying materials
44
* are made available under the terms of the Eclipse Public License v1.0
55
* which accompanies this distribution, and is available at
@@ -794,13 +794,13 @@ void documentSymbols() throws Exception {
794794
"- name: other-release\n"
795795
);
796796
editor.assertDocumentSymbols(
797-
"default|StemcellAlias",
798-
"foo-group|InstanceGroup",
799-
"bar-group|InstanceGroup",
800-
"one-release|Release",
801-
"other-release|Release",
802-
"blobstore_admin_users_password|Variable",
803-
"blobstore_secure_link_secret|Variable"
797+
"default",
798+
"foo-group",
799+
"bar-group",
800+
"one-release",
801+
"other-release",
802+
"blobstore_admin_users_password",
803+
"blobstore_secure_link_secret"
804804
);
805805
}
806806

0 commit comments

Comments
 (0)