From a6eb39e5451870f9bf0592190058238c563131a0 Mon Sep 17 00:00:00 2001 From: Dylan Date: Thu, 4 May 2023 23:35:52 +0100 Subject: [PATCH] Fix tweet not found test --- test_vx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_vx.py b/test_vx.py index 0a39ebe..be4bc09 100644 --- a/test_vx.py +++ b/test_vx.py @@ -239,7 +239,7 @@ def test_directEmbed(): def test_message404(): resp = client.get("https://twitter.com/jack/status/12345",headers={"User-Agent":"test"}) assert resp.status_code==200 - assert msgs.tweetNotFound in str(resp.data) + assert msgs.failedToScan in str(resp.data) def test_combine(): twt,e = twitfix.vnfFromCacheOrDL(testMultiMediaTweet)