Skip to content

Commit

Permalink
Fix incorrect order of username and password for RHSSO
Browse files Browse the repository at this point in the history
  • Loading branch information
pehala committed Sep 14, 2022
1 parent 2f14a99 commit 65a8f87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testsuite/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def rhsso(request, testconfig, blame):
cnf = testconfig["rhsso"]
try:
info = RHSSO(cnf["url"], cnf["username"], cnf["password"], blame("realm"), blame("client"),
cnf["test_user"]["password"], cnf["test_user"]["username"])
cnf["test_user"]["username"], cnf["test_user"]["password"])

if not testconfig["skip_cleanup"]:
request.addfinalizer(info.delete)
Expand Down

0 comments on commit 65a8f87

Please sign in to comment.