Skip to content

Commit

Permalink
Fix integration test that violated db integrity constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavcs committed Sep 19, 2024
1 parent c9510a4 commit c57cb7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/test_celery_user_rate_limit.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def setup_users(dburl: str, num_users: int = 2):
for user_id in user_ids_to_add:
conn.execute(
text("insert into galaxy_user(id, active, email, password) values (:id, :active, :email, :pw)"),
[{"id": user_id, "active": True, "email": "e", "pw": "p"}],
[{"id": user_id, "active": True, "email": f"e{user_id}", "pw": "p"}],
)


Expand Down

0 comments on commit c57cb7d

Please sign in to comment.