Skip to content

Commit

Permalink
Fix bug in test_rule_helper
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavcs committed Sep 19, 2024
1 parent 2b2c476 commit 59d05d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/app/jobs/test_rule_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def __setup_fixtures(app):
# user3 has no jobs.
user1 = model.User(email=USER_EMAIL_1, password="pass1")
user2 = model.User(email=USER_EMAIL_2, password="pass2")
user3 = model.User(email=USER_EMAIL_2, password="pass2")
user3 = model.User(email=USER_EMAIL_3, password="pass3")

app.add(user1, user2, user3)

Expand Down

0 comments on commit 59d05d6

Please sign in to comment.