Skip to content

Commit 3fd9f01

Browse files
fix: add missing space in assertion for URL comparison
1 parent 2190152 commit 3fd9f01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_influxdb_client_3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def test_write_port_overwrite(self):
7373
write_port_overwrite=8086,
7474
token="my_token",
7575
) as client:
76-
self.assertEqual(client._client.url,"http://localhost:8086")
76+
self.assertEqual(client._client.url, "http://localhost:8086")
7777

7878
def test_write_options(self):
7979
client = InfluxDBClient3(

0 commit comments

Comments
 (0)