Skip to content

Commit c5b904b

Browse files
committed
x
1 parent 5e5a4a4 commit c5b904b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
POSTGRES_USER = os.environ.get("POSTGRES_USER", "langchain")
1717
POSTGRES_HOST = os.environ.get("POSTGRES_HOST", "localhost")
1818
POSTGRES_PASSWORD = os.environ.get("POSTGRES_PASSWORD", "langchain")
19-
POSTGRES_DB = os.environ.get("POSTGRES_DB", "langchain")
19+
POSTGRES_DB = os.environ.get("POSTGRES_DB", "langchain_test")
2020

21-
POSTGRES_PORT = os.environ.get("POSTGRES_PORT", "6024")
21+
POSTGRES_PORT = os.environ.get("POSTGRES_PORT", "5432")
2222

2323
DSN = (
2424
f"postgresql://{POSTGRES_USER}:{POSTGRES_PASSWORD}@{POSTGRES_HOST}"

0 commit comments

Comments
 (0)