Skip to content

Commit c18b58f

Browse files
committed
minor fix in tests
1 parent 70f4d87 commit c18b58f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/settings-library/tests/test_postgres.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,6 @@ def test_dsn_with_async_sqlalchemy_has_query(
6363
settings = PostgresSettings()
6464

6565
parsed_url = urlparse(settings.dsn_with_async_sqlalchemy)
66-
assert parsed_url.scheme.split("+") == ("postgresql", "asyncpg")
66+
assert parsed_url.scheme.split("+") == ["postgresql", "asyncpg"]
6767

6868
assert not parsed_url.query

0 commit comments

Comments
 (0)