From f2b6b0e3b5217ae966dc83a96526ce335bbb5917 Mon Sep 17 00:00:00 2001 From: Girish Ramnani Date: Tue, 9 Jun 2020 15:16:16 +0530 Subject: [PATCH] added amit's changes --- tests/integration/devfile/cmd_devfile_create_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/devfile/cmd_devfile_create_test.go b/tests/integration/devfile/cmd_devfile_create_test.go index 3f46de0e31d..23b471cdaad 100644 --- a/tests/integration/devfile/cmd_devfile_create_test.go +++ b/tests/integration/devfile/cmd_devfile_create_test.go @@ -67,7 +67,7 @@ var _ = Describe("odo devfile create command tests", func() { It("should fail to create the devfile componet with invalid component type", func() { fakeComponentName := "fake-component" output := helper.CmdShouldFail("odo", "create", fakeComponentName) - expectedString := "\"" + fakeComponentName + "\" not found" + expectedString := "component type \"" + fakeComponentName + "\" not found" helper.MatchAllInOutput(output, []string{expectedString}) }) })