Skip to content

Commit

Permalink
Merge pull request #13 from micheltlutz/fix/tests
Browse files Browse the repository at this point in the history
Fix test
  • Loading branch information
micheltlutz authored Apr 29, 2024
2 parents 5db6562 + 61ed753 commit 4575c46
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/.env
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ DATABASE_URL=sqlite:///./dev-challenge.db
TEST_DATABASE_URL=sqlite:///./dev-challenge-test.db
WORKERS_PER_CORE=1 # config for uvicorn
MAX_WORKERS=1 # config for uvicorn
VERSION=1.1.1
VERSION=1.1.2
2 changes: 1 addition & 1 deletion tests/test_home_routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ def test_health_check():
def test_version():
response = client.get("/version")
assert response.status_code == 200
assert response.json() == {"version": "1.0.0"}
assert response.json() == {"version": "1.1.2"}

0 comments on commit 4575c46

Please sign in to comment.