We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62f4bf4 commit dfbd944Copy full SHA for dfbd944
test/playlist_test.dart
@@ -73,9 +73,9 @@ void main() {
73
});
74
75
test('Get videos of YT music playlist', () async {
76
- final playlistVideosCount = await yt!.playlists
+ final videos = await yt!.playlists
77
.getVideos('RDCLAK5uy_m9Rw_g5eCJtMhuRgP1eqU3H-XW7UL6uWQ')
78
- .length;
79
- expect(playlistVideosCount, greaterThan(100));
+ .toList();
+ expect(videos.length, greaterThan(100));
80
}, timeout: const Timeout(Duration(minutes: 2)));
81
}
0 commit comments