Skip to content

Commit

Permalink
removing lower() for ras username
Browse files Browse the repository at this point in the history
  • Loading branch information
krishnaa05 committed Aug 23, 2024
1 parent 486b8ac commit 45fafa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gen3-integration-tests/pages/login.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def login(
elif idp == "RAS":
page.locator("//button[normalize-space()='Login from RAS']").click()
self.ras_login(page)
logged_in_user = os.environ["CI_TEST_RAS_USERID"].lower()
logged_in_user = os.environ["CI_TEST_RAS_USERID"]
else:
logger.info(self.LOGIN_BUTTONS)
for login_button in self.LOGIN_BUTTONS:
Expand Down

0 comments on commit 45fafa3

Please sign in to comment.