Skip to content

Commit

Permalink
fix: do not refer to old constants from postgres class removed in feb…
Browse files Browse the repository at this point in the history
… 2023 before maintainer change (#7)
  • Loading branch information
alexanderankin authored Nov 19, 2024
1 parent cf1b0b4 commit 5dc2620
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_customers.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ def remove_container():
os.environ["DB_CONN"] = postgres.get_connection_url()
os.environ["DB_HOST"] = postgres.get_container_host_ip()
os.environ["DB_PORT"] = postgres.get_exposed_port(5432)
os.environ["DB_USERNAME"] = postgres.POSTGRES_USER
os.environ["DB_PASSWORD"] = postgres.POSTGRES_PASSWORD
os.environ["DB_NAME"] = postgres.POSTGRES_DB
os.environ["DB_USERNAME"] = postgres.username
os.environ["DB_PASSWORD"] = postgres.password
os.environ["DB_NAME"] = postgres.dbname
customers.create_table()


Expand Down

0 comments on commit 5dc2620

Please sign in to comment.