From a4b128e8b73dba4e2de2db2a7c33abb869e88eeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20M=C3=B3ricz?= Date: Mon, 23 Sep 2024 23:03:00 +0200 Subject: [PATCH] fix(rust): blocklisted error test --- apps/rust-sdk/tests/e2e_with_auth.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/rust-sdk/tests/e2e_with_auth.rs b/apps/rust-sdk/tests/e2e_with_auth.rs index 6ee7f79c..75568f92 100644 --- a/apps/rust-sdk/tests/e2e_with_auth.rs +++ b/apps/rust-sdk/tests/e2e_with_auth.rs @@ -114,7 +114,7 @@ async fn test_should_return_error_for_blocklisted_url() { assert_matches!( result, - Err(e) if e.to_string().contains("Firecrawl currently does not support social media scraping due to policy restrictions. We're actively working on building support for it.") + Err(e) if e.to_string().contains("Firecrawl currently does not support social media scraping due to policy restrictions.") ); }