From f3eabbe98bd0ee9ae9dbc4102bbe4c7fab7fbb74 Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Sat, 23 May 2026 15:16:19 -0700 Subject: [PATCH] Fix real flow fixture title assertion --- archivebox/tests/test_cli_real_flows.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivebox/tests/test_cli_real_flows.py b/archivebox/tests/test_cli_real_flows.py index ee893713..a4474afd 100644 --- a/archivebox/tests/test_cli_real_flows.py +++ b/archivebox/tests/test_cli_real_flows.py @@ -180,7 +180,7 @@ def test_cli_add_real_urls_with_options_writes_inspectable_outputs(tmp_path, pro combined_html = "\n".join(path.read_text(errors="ignore") for path in html_outputs) assert "Example Domain" in combined_html - assert "Browser-use Challenge for AI Browser Drivers" in combined_html + assert "Browser Agent Challenge for AI Browser Drivers" in combined_html assert processes assert any("wget" in (pwd or "") or "wget" in (cmd or "") for _type, _status, _exit, pwd, cmd in processes)