[tests/mpd] fix python3.5 for real now, hopefully
This commit is contained in:
parent
b22747818b
commit
e9e67ae375
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue