diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bootstrap/test_new_instance.py | 1 | ||||
-rw-r--r-- | tests/integration/test_browse.py | 5 |
2 files changed, 4 insertions, 2 deletions
diff --git a/tests/bootstrap/test_new_instance.py b/tests/bootstrap/test_new_instance.py index 7686fde..05076f4 100644 --- a/tests/bootstrap/test_new_instance.py +++ b/tests/bootstrap/test_new_instance.py @@ -117,4 +117,3 @@ def test_setup_via_fietsupdate(tmpdir): # Clean up the database. This is important with anything but SQLite, as # the tables would otherwise persist and interfere with the other tests. cleanup_database(Path("testing.ini")) - diff --git a/tests/integration/test_browse.py b/tests/integration/test_browse.py index 6913479..46ec329 100644 --- a/tests/integration/test_browse.py +++ b/tests/integration/test_browse.py @@ -85,7 +85,10 @@ def test_archive(testapp, dbsession, route_path, logged_in, tm, data_manager): # pylint: disable=too-many-positional-arguments with added_tracks(tm, dbsession, logged_in, data_manager) as tracks: archive = testapp.get( - route_path('track-archive', _query=[("track_id[]", tracks[0]), ("track_id[]", tracks[1])]) + route_path( + 'track-archive', + _query=[("track_id[]", tracks[0]), ("track_id[]", tracks[1])], + ) ) result = io.BytesIO(archive.body) |