remove emojis from console

This commit is contained in:
Dobromir Popov
2025-10-25 16:35:08 +03:00
parent 5aa4925cff
commit b8f54e61fa
75 changed files with 828 additions and 828 deletions

View File

@@ -226,10 +226,10 @@ async def test_connector_compatibility():
status = connector.get_connection_status()
print(f" ✓ Connection status: {status.value}")
print(f" {name.upper()} connector passed all tests")
print(f" {name.upper()} connector passed all tests")
except Exception as e:
print(f" {name.upper()} connector failed: {e}")
print(f" {name.upper()} connector failed: {e}")
print("\n=== All Connector Tests Completed ===")
return True
@@ -278,6 +278,6 @@ if __name__ == "__main__":
async def run_all_tests():
await test_connector_compatibility()
await test_multi_connector_data_flow()
print(" All connector tests completed successfully")
print(" All connector tests completed successfully")
asyncio.run(run_all_tests())