From ace5c12a06d6a2fb998f94f6b8468b107d50283b Mon Sep 17 00:00:00 2001 From: Naohiro CHIKAMATSU Date: Wed, 10 Jan 2024 17:36:05 +0900 Subject: [PATCH] Fix test --- cmd/subcmd/cfn/version_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/subcmd/cfn/version_test.go b/cmd/subcmd/cfn/version_test.go index 578cb87..54c8292 100644 --- a/cmd/subcmd/cfn/version_test.go +++ b/cmd/subcmd/cfn/version_test.go @@ -21,7 +21,7 @@ func Test_version(t *testing.T) { cmd.Run(cmd, []string{}) - want := "s3hub v0.0.0 (under MIT LICENSE)\n" + want := "cfn v0.0.0 (under MIT LICENSE)\n" got := stdout.String() if got != want { t.Errorf("got %s, want %s", got, want)