From ccc0ee456eaae96a473a9606e0c50b8131f55f63 Mon Sep 17 00:00:00 2001 From: Agate <me@agate.blue> Date: Tue, 8 Dec 2020 17:09:48 +0100 Subject: [PATCH] Fixed failing test --- tests/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_cli.py b/tests/test_cli.py index c84831c..95569ab 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -521,7 +521,7 @@ def test_playlists_rm(cli_ctx, session, responses, get_requests): def test_playlists_tracks_add(cli_ctx, session, responses, get_requests): command = cli.playlists.playlists_tracks_add - url = "https://test.funkwhale/api/v1/playlists/66/" + url = "https://test.funkwhale/api/v1/playlists/66/add" responses.post(url) command.callback(id=66, track=[1, 42], no_duplicates=True, _async_reraise=True) -- GitLab