From 09c3386f55f766b135b6a1c00295646c4ae29bec Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 25 Feb 2021 09:13:00 -0800 Subject: [PATCH] Applied Black, refs #237 --- tests/test_cli.py | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index 0be25948d..87753965c 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -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(): @@ -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