fix: correct quote currency extraction in create_product_info and remove debug prints from tests

This commit is contained in:
2025-10-02 01:36:57 +02:00
parent ca463f9f5f
commit c978b92268
4 changed files with 1 additions and 8 deletions

View File

@@ -24,9 +24,7 @@ class TestSocialAPIsTool:
result = tool.wrapper_handler.try_call_all(lambda w: w.get_top_crypto_posts(limit=2))
assert isinstance(result, dict)
assert len(result.keys()) > 0
print("Results from providers:", result.keys())
for provider, posts in result.items():
for post in posts:
print(provider, post.title)
assert post.title is not None
assert post.time is not None