remove emojis from console
This commit is contained in:
@@ -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())
|
||||
Reference in New Issue
Block a user