From 76840b4d2c9346bcd1af5f749af8dc1009436682 Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sat, 25 Sep 2021 17:27:31 -0700 Subject: [PATCH] fix capitalization in some steps --- tests/bdd/features/format.feature | 4 ++-- tests/bdd/features/override.feature | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/bdd/features/format.feature b/tests/bdd/features/format.feature index eabdaea8..36a89747 100644 --- a/tests/bdd/features/format.feature +++ b/tests/bdd/features/format.feature @@ -1,7 +1,7 @@ Feature: Custom formats Scenario Outline: Short printing via --format flag - Given We use the config "" + Given we use the config "" And we use the password "test" if prompted When we run "jrnl --format short -3" Then we should get no error @@ -15,7 +15,7 @@ Feature: Custom formats Scenario Outline: Pretty Printing aka the Default - Given We use the config "" + Given we use the config "" And we use the password "test" if prompted When we run "jrnl --format pretty -3" Then we should get no error diff --git a/tests/bdd/features/override.feature b/tests/bdd/features/override.feature index 9b875b7b..c41f2225 100644 --- a/tests/bdd/features/override.feature +++ b/tests/bdd/features/override.feature @@ -8,7 +8,7 @@ Feature: Implementing Runtime Overrides for Select Configuration Keys Scenario: Postconfig commands with overrides - Given We use the config "basic_encrypted.yaml" + Given we use the config "basic_encrypted.yaml" And we use the password "test" if prompted When we run "jrnl --decrypt --config-override highlight false --config-override editor nano" Then the config should have "highlight" set to "bool:false"