Skip to content

Commit

Permalink
style: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
etienne-napoleone committed Feb 23, 2020
1 parent 0c47ab4 commit 92c4775
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_goutte.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def load_config(*args):
with caplog.at_level("INFO"):
with open("test.toml", "w") as f:
f.write("Hello World!")
result = runner.invoke(main.entrypoint, ["test.toml", "token123",])
result = runner.invoke(main.entrypoint, ["test.toml", "token123"])
assert result.exit_code == 0
assert len(caplog.records) == 1
assert caplog.records[0].levelname == "INFO"
Expand All @@ -44,7 +44,7 @@ def load_config(*args):
with open("test.toml", "w") as f:
f.write("Hello World!")
result = runner.invoke(
main.entrypoint, ["test.toml", "token123", "--debug",]
main.entrypoint, ["test.toml", "token123", "--debug"]
)
assert result.exit_code == 0
assert len(caplog.records) == 1
Expand All @@ -66,7 +66,7 @@ def load_config(*args):
f.write("Hello World!")
result = runner.invoke(
main.entrypoint,
["test.toml", "token123", "--debug", "--only", "prune",],
["test.toml", "token123", "--debug", "--only", "prune"],
)
assert result.exit_code == 0
assert len(caplog.records) == 1
Expand Down

0 comments on commit 92c4775

Please sign in to comment.