Skip to content

Commit

Permalink
fixed invalid id in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
degendemolisher committed Nov 10, 2024
1 parent 8797fcf commit bc60b01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/async/test_track.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ async def test_track_writes_mp3_metadata(test_track:Track):
@pytest.mark.asyncio
async def test_fetch_track_by_id_in_order(async_api: SoundcloudAPI):
""" Test resolve in order """
expected = [222820656, 153576776, 289589592, 268448230]
expected = [222820656, 1860005124, 289589592, 268448230]
tracks = await async_api.get_tracks(*expected)
actual = [t['id'] for t in tracks]
assert expected == actual
2 changes: 1 addition & 1 deletion tests/sync/test_track.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def test_track_writes_mp3_album(sync_api):

def test_fetch_track_by_id_in_order(sync_api: SoundcloudAPI):
""" Test that multiple track ids fetched at the same time are returned in the correct order """
expected = [ 222820656, 153576776, 289589592, 268448230]
expected = [ 222820656, 1860005124, 289589592, 268448230]
tracks = sync_api.get_tracks(*expected)
actual = [t['id'] for t in tracks]
assert expected == actual

0 comments on commit bc60b01

Please sign in to comment.