From 9c46b9bd2c2b7549ca0f5ac6cb60596d115d91e5 Mon Sep 17 00:00:00 2001 From: Mattia Date: Sat, 17 Oct 2020 14:46:40 +0200 Subject: [PATCH] Fix tests --- test/video_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/video_test.dart b/test/video_test.dart index f238677..519ddfe 100644 --- a/test/video_test.dart +++ b/test/video_test.dart @@ -31,7 +31,7 @@ void main() { expect(video.thumbnails.highResUrl, isNotEmpty); expect(video.thumbnails.standardResUrl, isNotEmpty); expect(video.thumbnails.maxResUrl, isNotEmpty); - expect(video.keywords, orderedEquals(['osu', 'mouse', '"rhythm game"'])); + expect(video.keywords, orderedEquals(['osu', 'mouse', 'rhythm game'])); expect(video.engagement.viewCount, greaterThanOrEqualTo(134)); expect(video.engagement.likeCount, greaterThanOrEqualTo(5)); expect(video.engagement.dislikeCount, greaterThanOrEqualTo(0));