aboutsummaryrefslogtreecommitdiffstats
path: root/cypress/support
diff options
context:
space:
mode:
authorLouis <louis@chmn.me>2024-03-26 18:51:58 +0100
committerGitHub <noreply@github.com>2024-03-26 18:51:58 +0100
commit72fbbc72a2005b02501abb68e9be47d036f649d1 (patch)
treec65c88466000bfc6f0315209eebab124f8bd3741 /cypress/support
parent5100c7eb6a120ef389628e6c294822566620fe00 (diff)
parent369274c9ee82eed6010a1a3b9cc5bac1a9926e2c (diff)
downloadnextcloud-server-72fbbc72a2005b02501abb68e9be47d036f649d1.tar.gz
nextcloud-server-72fbbc72a2005b02501abb68e9be47d036f649d1.zip
Merge pull request #44187 from nextcloud/artonge/feat/support_migrating_versions_across_storages
Add listener and interfaces to allow versions migration across storage
Diffstat (limited to 'cypress/support')
-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..8d78c3db166 100644
--- a/cypress/support/commands.ts
+++ b/cypress/support/commands.ts
@@ -184,7 +184,7 @@ Cypress.Commands.add('mkdir', (user: User, target: string) => {
cy.log(`Created directory ${target}`, response)
} catch (error) {
cy.log('error', error)
- throw new Error('Unable to process fixture')
+ throw new Error('Unable to create directory')
}
})
})