Skip to content

Commit 22f8dc8

Browse files
committed
fixed unit test for example.com, they changed their text...
1 parent 2503877 commit 22f8dc8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_processors_local.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -373,8 +373,8 @@ def test_url_process_standard():
373373
" ".join(result.text) if isinstance(result.text, list) else result.text
374374
)
375375
# Expect that the text from example.com contains "illustrative examples".
376-
assert "illustrative examples" in combined_text, (
377-
"Expected 'illustrative examples' in extracted text from http://example.com"
376+
assert "Example Domain" in combined_text, (
377+
"Expected 'Example Domain' in extracted text from http://example.com"
378378
)
379379
assert isinstance(result.modalities, list), "Modalities should be a list"
380380

0 commit comments

Comments
 (0)