From bc60b0142a018120074a690e957f838de95a6299 Mon Sep 17 00:00:00 2001 From: Dennis Date: Sun, 10 Nov 2024 00:12:55 +0000 Subject: [PATCH] fixed invalid id in tests --- tests/async/test_track.py | 2 +- tests/sync/test_track.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/async/test_track.py b/tests/async/test_track.py index 8ab1917..d285f96 100644 --- a/tests/async/test_track.py +++ b/tests/async/test_track.py @@ -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 diff --git a/tests/sync/test_track.py b/tests/sync/test_track.py index 22c08e9..9b9c17c 100644 --- a/tests/sync/test_track.py +++ b/tests/sync/test_track.py @@ -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