From e5b8a9a9b083b7afcfa91008b6d93255b5e6fc41 Mon Sep 17 00:00:00 2001 From: ThetaDev Date: Mon, 29 Jan 2024 01:41:46 +0100 Subject: [PATCH] fix(tests): update comment count --- tests/youtube.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/youtube.rs b/tests/youtube.rs index e0ed22d..0d9e428 100644 --- a/tests/youtube.rs +++ b/tests/youtube.rs @@ -664,7 +664,7 @@ fn get_video_details_chapters(rp: RustyPipe) { assert!(details.recommended.visitor_data.is_some()); assert_next(details.recommended, rp.query(), 10, 1); - assert_gte(details.top_comments.count.unwrap(), 3200, "comments"); + assert_gte(details.top_comments.count.unwrap(), 3000, "comments"); assert!(!details.top_comments.is_exhausted()); assert!(!details.latest_comments.is_exhausted()); }