Skip to content

Commit

Permalink
fix: fix'd route in test.yml and settings.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mateus-lm committed Nov 6, 2023
1 parent c245e65 commit 66c7704
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
--health-timeout=5s
--health-retries=5
ports:
- 5433:5432
- 5432:5432
steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion gestao/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Settings(BaseSettings):
log_level: LogLevel = LogLevel.INFO
# Variables for the database
db_host: str = "localhost"
db_port: int = 5433
db_port: int = 5432
db_user: str = "gestao"
db_pass: str = "gestao"
db_base: str = "gestao"
Expand Down

0 comments on commit 66c7704

Please sign in to comment.