Skip to content

Commit

Permalink
fix: oops, use correct pw in test config
Browse files Browse the repository at this point in the history
  • Loading branch information
dlbrittain committed Feb 19, 2025
1 parent ed19d13 commit 9f5a882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion materializationengine/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class TestConfig(BaseConfig):
ENV = "testing"
TESTING = True
SQLALCHEMY_DATABASE_URI = (
"postgresql://postgres:materialize@localhost:5432/test_aligned_volume"
"postgresql://postgres:postgres@localhost:5432/test_aligned_volume"
)
SQLALCHEMY_TRACK_MODIFICATIONS = False
CELERY_BROKER_URL = "memory://"
Expand Down

0 comments on commit 9f5a882

Please sign in to comment.