From 23b493add806a370dd0a58b3d55d66659ab010e8 Mon Sep 17 00:00:00 2001 From: nsingh Date: Wed, 25 Jan 2017 16:34:15 -0800 Subject: [PATCH] Fixed failing test case for services --- .../vscode/manifest/yaml/ManifestYamlEditorCFBasicTest.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vscode-extensions/vscode-manifest-yaml/src/test/java/org/springframework/ide/vscode/manifest/yaml/ManifestYamlEditorCFBasicTest.java b/vscode-extensions/vscode-manifest-yaml/src/test/java/org/springframework/ide/vscode/manifest/yaml/ManifestYamlEditorCFBasicTest.java index e2a09161f..78a121dd0 100644 --- a/vscode-extensions/vscode-manifest-yaml/src/test/java/org/springframework/ide/vscode/manifest/yaml/ManifestYamlEditorCFBasicTest.java +++ b/vscode-extensions/vscode-manifest-yaml/src/test/java/org/springframework/ide/vscode/manifest/yaml/ManifestYamlEditorCFBasicTest.java @@ -54,11 +54,10 @@ public class ManifestYamlEditorCFBasicTest { assertDoesNotContainCompletions("buildpack: <*>", "buildpack: wrong_buildpack<*>"); } - @Ignore @Test public void contentAssistServices() throws Exception { basicCfClientHarness.addServiceInstances("mysql"); - assertContainsCompletions("services:\n" + " - <*>", "mysql"); + assertContainsCompletions("services:\n" + " - <*>", "mysql"); } @Test