From e0ac28fad8c28424920e93ba37695cd67d9bc514 Mon Sep 17 00:00:00 2001 From: Jack Wright Date: Sun, 8 Dec 2024 19:33:48 -0800 Subject: [PATCH] fix fish reference --- nushell_completions_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nushell_completions_test.go b/nushell_completions_test.go index d86e8ed..db58cbd 100644 --- a/nushell_completions_test.go +++ b/nushell_completions_test.go @@ -79,7 +79,7 @@ func TestFailGenNushellCompletionFile(t *testing.T) { } rootCmd.AddCommand(child) - got := rootCmd.GenFishCompletionFile(f.Name(), false) + got := rootCmd.GenNushellCompletionFile(f.Name(), false) if !errors.Is(got, os.ErrPermission) { t.Errorf("got: %s, want: %s", got.Error(), os.ErrPermission.Error()) }