From 2a1d9e94bc3c087ad546b0cbdf8c4c4a5fa2c873 Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Sun, 2 Jun 2024 19:33:41 +0100 Subject: [PATCH] All tests pass --- tests/test_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_models.py b/tests/test_models.py index c4c8f66..5e0856a 100644 --- a/tests/test_models.py +++ b/tests/test_models.py @@ -152,7 +152,7 @@ class TestMMModels(unittest.TestCase): assert len(Playlists.get_open(session)) == 1 assert len(Playlists.get_closed(session)) == 0 - playlist.close() + playlist.close(session) assert len(Playlists.get_open(session)) == 0 assert len(Playlists.get_closed(session)) == 1