Skip to content

Commit

Permalink
tests: fix bug that cause doc test to fail because of wrong setup
Browse files Browse the repository at this point in the history
  • Loading branch information
the-forest-tree authored and the-forest-tree committed Mar 18, 2024
1 parent c730d3a commit bb77cd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/core/test_documentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ def test_ignored_path_are_not_taken_into_account_for_main_readme_updated_at(
for ignored in IGNORED_PATHS
]
)
with patched_subprocess(stdout=base_stdout + should_be_ignored):
with patched_subprocess(stdout=base_stdout + "\n" + should_be_ignored):
generate_docs(connectors=connectors, connectors_directory=connectors_directory)

assert greater_than_max_of_dates.strftime("%d/%m/%Y") not in root_readme.read_text()
Expand Down

0 comments on commit bb77cd5

Please sign in to comment.