This repository was archived by the owner on Aug 19, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -56,26 +56,26 @@ def test_mysql_explicit_ssl():
5656
5757
5858def test_aiopg_pool_size ():
59- backend = AiopgBackend ("postgres +aiopg://localhost/database?min_size=1&max_size=20" )
59+ backend = AiopgBackend ("postgresql +aiopg://localhost/database?min_size=1&max_size=20" )
6060 kwargs = backend ._get_connection_kwargs ()
6161 assert kwargs == {"minsize" : 1 , "maxsize" : 20 }
6262
6363
6464def test_aiopg_explicit_pool_size ():
6565 backend = AiopgBackend (
66- "postgres +aiopg://localhost/database" , min_size = 1 , max_size = 20
66+ "postgresql +aiopg://localhost/database" , min_size = 1 , max_size = 20
6767 )
6868 kwargs = backend ._get_connection_kwargs ()
6969 assert kwargs == {"minsize" : 1 , "maxsize" : 20 }
7070
7171
7272def test_aiopg_ssl ():
73- backend = AiopgBackend ("postgres +aiopg://localhost/database?ssl=true" )
73+ backend = AiopgBackend ("postgresql +aiopg://localhost/database?ssl=true" )
7474 kwargs = backend ._get_connection_kwargs ()
7575 assert kwargs == {"ssl" : True }
7676
7777
7878def test_aiopg_explicit_ssl ():
79- backend = AiopgBackend ("postgres +aiopg://localhost/database" , ssl = True )
79+ backend = AiopgBackend ("postgresql +aiopg://localhost/database" , ssl = True )
8080 kwargs = backend ._get_connection_kwargs ()
8181 assert kwargs == {"ssl" : True }
You can’t perform that action at this time.
0 commit comments