Skip to content
This repository was archived by the owner on Aug 19, 2025. It is now read-only.

Commit 99ad8f0

Browse files
Fix duplicate test name
1 parent 683563e commit 99ad8f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_database_url.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def test_database_url_properties():
2323
assert u.database == "mydatabase"
2424

2525

26-
def test_database_url_properties():
26+
def test_database_url_options():
2727
u = DatabaseURL("postgresql://localhost/mydatabase?pool_size=20&ssl=true")
2828
assert u.options == {"pool_size": "20", "ssl": "true"}
2929

0 commit comments

Comments
 (0)