From 8864e7c87d8ab4df5dd47861943a1189ecf7d5ba Mon Sep 17 00:00:00 2001 From: Logan Williams Date: Wed, 10 May 2023 14:25:50 +0200 Subject: [PATCH] Fix failing test --- tests/scraper_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scraper_test.py b/tests/scraper_test.py index 152f279..040cfa1 100644 --- a/tests/scraper_test.py +++ b/tests/scraper_test.py @@ -138,7 +138,7 @@ def test_scrape_video_only(): assert len(res) == 1 assert res[0]["id"] == "video38556806_456251917" assert str(res[0]["datetime"]) == str(datetime.datetime(2022, 3, 24, 5, 42, 38)) - assert len(res[0]["payload"]) == 31 + assert len(res[0]["payload"]) == 34 assert len(res[0]["attachments"].keys()) == 1 assert list(res[0]["attachments"].keys()) == ["video"]