Skip to content

Commit

Permalink
tests: fixing typo in test_authentication.py
Browse files Browse the repository at this point in the history
The assertion checks for user_3 but the user added is user-3. The value
is different than the others because we are trying to try different
combinations.

Reviewed-by: Scott Poore <[email protected]>
  • Loading branch information
Dan Lavu authored and alexey-tikhonov committed Apr 2, 2024
1 parent 0d5e8f1 commit 795b13c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/system/tests/test_authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def test_authentication__login_using_email_address(client: Client, ad: AD, metho
"""
ad.user("user-1").add(password="Secret123", email=f"user-1@{ad.host.domain}")
ad.user("user-2").add(password="Secret123", email="[email protected]")
ad.user("user-3").add(password="Secret123", email="[email protected]")
ad.user("user_3").add(password="Secret123", email="[email protected]")

client.sssd.set_service_user(sssd_service_user)
client.sssd.start()
Expand Down

0 comments on commit 795b13c

Please sign in to comment.