Skip to content

Commit

Permalink
mpd: Add missing .get() in test
Browse files Browse the repository at this point in the history
  • Loading branch information
jodal committed Mar 3, 2019
1 parent bfcbe0d commit 0ec4efc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/mpd/test_status.py
Expand Up @@ -193,7 +193,7 @@ def test_status_method_when_playing_contains_time_with_no_length(self):

def test_status_method_when_playing_contains_time_with_length(self):
self.set_tracklist([Track(uri='dummy:/a', length=10000)])
self.core.playback.play()
self.core.playback.play().get()
result = dict(status.status(self.context))
self.assertIn('time', result)
(position, total) = result['time'].split(':')
Expand Down

0 comments on commit 0ec4efc

Please sign in to comment.