Skip to content

Commit

Permalink
GH-1431: fix broken tests for symbols in bosh editor
Browse files Browse the repository at this point in the history
  • Loading branch information
martinlippert committed Feb 21, 2025
1 parent 6f06259 commit 358c9cc
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2016 Pivotal, Inc.
* Copyright (c) 2016, 2025 Pivotal, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
Expand Down Expand Up @@ -794,13 +794,13 @@ void documentSymbols() throws Exception {
"- name: other-release\n"
);
editor.assertDocumentSymbols(
"default|StemcellAlias",
"foo-group|InstanceGroup",
"bar-group|InstanceGroup",
"one-release|Release",
"other-release|Release",
"blobstore_admin_users_password|Variable",
"blobstore_secure_link_secret|Variable"
"default",
"foo-group",
"bar-group",
"one-release",
"other-release",
"blobstore_admin_users_password",
"blobstore_secure_link_secret"
);
}

Expand Down

0 comments on commit 358c9cc

Please sign in to comment.