We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec6958d commit bbbe164Copy full SHA for bbbe164
tests/test_WriteApi.py
@@ -477,7 +477,7 @@ def test_connection_option_from_env(self):
477
def _check_connection_settings(self):
478
self.write_client = self.client.write_api(write_options=SYNCHRONOUS)
479
480
- self.assertEqual("http://localhost:9999", self.client.url)
+ self.assertEqual(os.environ("INFLUXDB_V2_URL"), self.client.url)
481
self.assertEqual("my-org", self.client.org)
482
self.assertEqual("my-token", self.client.token)
483
self.assertEqual(6000, self.client.timeout)
0 commit comments