From 9378dae8b17690226c05d58a3d1f59bd47f4c91b Mon Sep 17 00:00:00 2001 From: sayboras Date: Tue, 14 Apr 2020 21:05:54 +1000 Subject: [PATCH] Adjust the expected string --- cmd/fluxctl/completion_cmd_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/fluxctl/completion_cmd_test.go b/cmd/fluxctl/completion_cmd_test.go index 7096fd6d3..813e22f82 100644 --- a/cmd/fluxctl/completion_cmd_test.go +++ b/cmd/fluxctl/completion_cmd_test.go @@ -49,15 +49,15 @@ func TestCompletionCommand_Success(t *testing.T) { }{ { shell: "bash", - expected: "#bash completion for completion", + expected: "bash completion for completion", }, { shell: "zsh", - expected: "#compdef _completion completion", + expected: "compdef _completion completion", }, { shell: "fish", - expected: "#fish completion for completion", + expected: "fish completion for completion", }, }