Skip to content

Commit a01dba9

Browse files
committed
Fix
Signed-off-by: Mihail Yanchev <yanchev.mihail@gmail.com>
1 parent 22df3e5 commit a01dba9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_connections.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -373,8 +373,8 @@ def test_issue_1196(self):
373373
config = connections.get_connection_addr("default")
374374
assert config == {"address": 'localhost:19531', "user": 'root', "secure": True}
375375

376-
@pytest.mark.parametrize("uri, db_name", [("http://localhost:19530", "test_db"), ("http://localhost:19530/", "test_db"), ("http://localhost:19530/test_db", None)])
377-
def test_issue_2670_2727(self, uri: str, db_name: str | None):
376+
@pytest.mark.parametrize("uri, db_name", [("http://localhost:19530", "test_db"), ("http://localhost:19530/", "test_db"), ("http://localhost:19530/test_db", "")])
377+
def test_issue_2670_2727(self, uri: str, db_name: str):
378378
"""
379379
Issue 2670:
380380

0 commit comments

Comments
 (0)