Skip to content

Commit

Permalink
Adjust unit test to check new role name
Browse files Browse the repository at this point in the history
  • Loading branch information
jdavcs committed Oct 25, 2024
1 parent 75b298d commit 5f1502a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/data/test_galaxy_mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ def check_private_role(private_role, user):
assert private_role.type == model.Role.types.PRIVATE
assert len(private_role.users) == 1
assert private_role.users[0].user is user
assert private_role.name == model.Role.default_name(model.Role.types.PRIVATE)
assert private_role.name == f"private role for {user.email}"

email = "[email protected]"
u = model.User(email=email, password="password")
Expand Down

0 comments on commit 5f1502a

Please sign in to comment.