We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3927126 commit bab2e06Copy full SHA for bab2e06
yhttp/dev/fixtures.py
@@ -68,7 +68,7 @@ def freshdb(cicd):
68
dbname = f'freshdb_{datetime.datetime.now():%Y%m%d%H%M%S}'
69
dbmanager = PostgresqlManager(host, 'postgres', user, pass_)
70
dbmanager.create(dbname, dropifexists=True)
71
- freshurl = f'postgres://{user}:{pass_}@{host}/{dbname}'
+ freshurl = f'postgresql://{user}:{pass_}@{host}/{dbname}'
72
yield freshurl
73
dbmanager.dropifexists(dbname)
74
0 commit comments