Skip to content

Commit

Permalink
fix test steps
Browse files Browse the repository at this point in the history
  • Loading branch information
saw-jan committed Nov 7, 2023
1 parent b521f10 commit 8b8dcfb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion test/gui/shared/steps/account_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ def step(context, displayname, host):
def step(context, username):
password = getPasswordForUser(username)
setUpClient(username)
EnterPassword.loginAfterSetup(username, password)
enter_password = EnterPassword()
enter_password.loginAfterSetup(username, password)

# wait for files to sync
waitForInitialSyncToComplete(getResourcePath('/', username))
Expand Down
3 changes: 2 additions & 1 deletion test/gui/shared/steps/spaces_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ def step(context, user, space_name, role):
def step(context, user, space_name):
password = getPasswordForUser(user)
setUpClient(user, space_name)
EnterPassword.loginAfterSetup(user, password)
enter_password = EnterPassword()
enter_password.loginAfterSetup(user, password)
# wait for files to sync
waitForInitialSyncToComplete(getResourcePath('/', user, space_name))

Expand Down

0 comments on commit 8b8dcfb

Please sign in to comment.