Skip to content

Commit

Permalink
Update YT music test
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexer10 committed Dec 10, 2023
1 parent 62f4bf4 commit dfbd944
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/playlist_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ void main() {
});

test('Get videos of YT music playlist', () async {
final playlistVideosCount = await yt!.playlists
final videos = await yt!.playlists
.getVideos('RDCLAK5uy_m9Rw_g5eCJtMhuRgP1eqU3H-XW7UL6uWQ')
.length;
expect(playlistVideosCount, greaterThan(100));
.toList();
expect(videos.length, greaterThan(100));
}, timeout: const Timeout(Duration(minutes: 2)));
}

0 comments on commit dfbd944

Please sign in to comment.