Skip to content

Commit

Permalink
Applied Black, refs #237
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Feb 25, 2021
1 parent bba6e24 commit 09c3386
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1400,15 +1400,11 @@ def test_drop_table_error():
# Using --ignore supresses that error
result = runner.invoke(
cli.cli,
[
"drop-table",
"test.db",
"t2",
"--ignore"
],
["drop-table", "test.db", "t2", "--ignore"],
)
assert 0 == result.exit_code


def test_drop_view():
runner = CliRunner()
with runner.isolated_filesystem():
Expand Down Expand Up @@ -1445,12 +1441,7 @@ def test_drop_view_error():
# Using --ignore supresses that error
result = runner.invoke(
cli.cli,
[
"drop-view",
"test.db",
"t2",
"--ignore"
],
["drop-view", "test.db", "t2", "--ignore"],
)
assert 0 == result.exit_code

Expand Down

0 comments on commit 09c3386

Please sign in to comment.