From e9e67ae375a8646471f56ec17a194479dfe9eed8 Mon Sep 17 00:00:00 2001 From: Tobias Witek Date: Sat, 20 Jun 2020 15:07:16 +0200 Subject: [PATCH] [tests/mpd] fix python3.5 for real now, hopefully --- tests/modules/contrib/test_mpd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/modules/contrib/test_mpd.py b/tests/modules/contrib/test_mpd.py index 54dd10a..26722e3 100644 --- a/tests/modules/contrib/test_mpd.py +++ b/tests/modules/contrib/test_mpd.py @@ -42,7 +42,7 @@ def test_hidden_on_creation(mpd_module): def test_update_calls_load_song(mocker, mpd_module): mocker.patch.object(mpd_module, '_load_song') mpd_module.update() - mpd_module._load_song.assert_called() + mpd_module._load_song.assert_called_with() def test_default_layout(mpd_module): assert mpd_module._layout == "mpd.prev mpd.main mpd.next mpd.shuffle mpd.repeat"