Skip to content

Commit

Permalink
[tests/mpd] fix python3.5 for real now, hopefully
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Witek committed Jun 20, 2020
1 parent b227478 commit e9e67ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/modules/contrib/test_mpd.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit e9e67ae

Please sign in to comment.