Skip to content

Commit

Permalink
test(db): fix expected number of users from sample
Browse files Browse the repository at this point in the history
  • Loading branch information
thekaveman committed Nov 16, 2023
1 parent f7a41b1 commit da2faad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/db/test_setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest

from sqlalchemy import inspect

from eligibility_server.db import db
from eligibility_server.db.models import Eligibility, User

Expand All @@ -14,7 +14,7 @@ def test_init_db_command(runner):

assert result.exit_code == 0

assert User.query.count() == 31
assert User.query.count() == 38
assert Eligibility.query.count() == 2

user_with_one_eligibility = User.query.filter_by(sub="32587", name="Gonzales").first()
Expand Down

0 comments on commit da2faad

Please sign in to comment.