From 17108e1db49db34480170f575131e642b22bda2d Mon Sep 17 00:00:00 2001 From: Lynn Cyrin Date: Sat, 13 Jul 2019 13:59:29 -0700 Subject: [PATCH] tabs --- app_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app_test.go b/app_test.go index 71d9fcc..6b44654 100644 --- a/app_test.go +++ b/app_test.go @@ -888,7 +888,7 @@ func TestRequiredFlagAppRunBehavior(t *testing.T) { }{ { // expectations: - // - empty input shows the help message + // - empty input shows the help message // - empty input explicitly does not error testCase: "empty_input", appRunInput: []string{""}, @@ -897,7 +897,7 @@ func TestRequiredFlagAppRunBehavior(t *testing.T) { }, { // expectations: - // - empty input, when a required flag is present, shows the help message + // - empty input, when a required flag is present, shows the help message // - empty input, when a required flag is present, errors // - empty input, when a required flag is present, show the flag error message testCase: "empty_input_with_required_flag", @@ -909,7 +909,7 @@ func TestRequiredFlagAppRunBehavior(t *testing.T) { }, { // expectations: - // - --help input, when a required flag is present, shows the help message + // - --help input, when a required flag is present, shows the help message // - --help input, when a required flag is present, explicitly does not error // - --help input, when a required flag is present, explicitly does not show the flag error message testCase: "help_input_with_required_flag", @@ -921,7 +921,7 @@ func TestRequiredFlagAppRunBehavior(t *testing.T) { }, { // expectations: - // - optional input, when a required flag is present, shows the help message + // - optional input, when a required flag is present, shows the help message // - optional input, when a required flag is present, errors // - optional input, when a required flag is present, shows the flag error message testCase: "optional_input_with_required_flag",