diff --git a/features/exporting.feature b/features/exporting.feature index da6d8ce9..96a9558f 100644 --- a/features/exporting.feature +++ b/features/exporting.feature @@ -9,8 +9,8 @@ Feature: Exporting a Journal And "tags" in the json output should contain "@idea" And "tags" in the json output should contain "@journal" And "tags" in the json output should contain "@dan" - And entry 1 should have an array called "tags" with 2 elements - And entry 2 should have an array called "tags" with 2 elements + And entry 1 should have an array "tags" with 2 elements + And entry 2 should have an array "tags" with 2 elements Scenario: Exporting using filters should only export parts of the journal Given we use the config "tags.yaml" diff --git a/features/steps/export_steps.py b/features/steps/export_steps.py index 093adfaa..ce7fdbc9 100644 --- a/features/steps/export_steps.py +++ b/features/steps/export_steps.py @@ -54,7 +54,7 @@ def check_json_output_path(context, path, value): @then( - 'entry {entry_number:d} should have an array called "{name}" with {items_number:d} elements' + 'entry {entry_number:d} should have an array "{name}" with {items_number:d} elements' ) def entry_array_count(context, entry_number, name, items_number): # note that entry_number is 1-indexed.