aboutsummaryrefslogtreecommitdiffstats
path: root/cypress/support/commands.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cypress/support/commands.ts')
-rw-r--r--cypress/support/commands.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cypress/support/commands.ts b/cypress/support/commands.ts
index 1d7efe52075..92e72526d83 100644
--- a/cypress/support/commands.ts
+++ b/cypress/support/commands.ts
@@ -288,5 +288,5 @@ Cypress.Commands.add('resetUserTheming', (user?: User) => {
Cypress.Commands.add('runOccCommand', (command: string, options?: Partial<Cypress.ExecOptions>) => {
const env = Object.entries(options?.env ?? {}).map(([name, value]) => `-e '${name}=${value}'`).join(' ')
- return cy.exec(`docker exec --user www-data ${env} nextcloud-cypress-tests-server php ./occ ${command}`, options)
+ return cy.exec(`docker exec --user www-data ${env} nextcloud-cypress-tests php ./occ ${command}`, options)
})