removed called

This commit is contained in:
= 2020-06-06 19:10:58 -04:00
parent 4bf75653ab
commit 575e32666c
2 changed files with 3 additions and 3 deletions

View file

@ -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"

View file

@ -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.