Merge pull request #294 from pylast/fix-test

Fix the build
This commit is contained in:
Hugo 2019-02-03 15:07:05 +02:00 committed by GitHub
commit 6a1a5a450e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,6 @@ class TestPyLastTrack(TestPyLastWithLastFm):
# Act
track.love()
time.sleep(1) # Delay, for Last.fm latency. TODO Can this be removed later?
# Assert
loved = lastfm_user.get_loved_tracks(limit=1)
@ -38,6 +37,7 @@ class TestPyLastTrack(TestPyLastWithLastFm):
# Act
track.unlove()
time.sleep(1) # Delay, for Last.fm latency. TODO Can this be removed later?
# Assert
loved = lastfm_user.get_loved_tracks(limit=1)