Skip to content

Commit

Permalink
test(test_postgres): fix typo in non-CI conn string
Browse files Browse the repository at this point in the history
  • Loading branch information
lukehsiao committed Apr 7, 2020
1 parent 5ae665b commit 2c1ed6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_postgres.py
Expand Up @@ -29,7 +29,7 @@
+ f"@{os.environ['POSTGRES_HOST']}:{os.environ['POSTGRES_PORT']}/{DB}"
)
else:
CONN_STRING = f"postgresql://120.0.0.1:5432/{DB}"
CONN_STRING = f"postgresql://127.0.0.1:5432/{DB}"


def test_cand_gen_cascading_delete():
Expand Down

0 comments on commit 2c1ed6f

Please sign in to comment.