We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffe46bc commit 3d0f947Copy full SHA for 3d0f947
tests/test_wdoc.py
@@ -514,8 +514,8 @@ def test_query_duckduckgo_search():
514
)
515
516
# Basic validation that the function runs without crashing
517
- assert isinstance(out, dict)
518
- assert "final_answer" in out
519
- assert isinstance(out["final_answer"], str)
520
- assert len(out["final_answer"]) > 0
+ assert isinstance(out, dict), out
+ assert "final_answer" in out, out
+ assert isinstance(out["final_answer"], str), out
+ assert len(out["final_answer"]) > 0, out
521
# Don't check the content deeply as requested, just ensure it returns something
0 commit comments