aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/tests/js/fileUploadSpec.js
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@protonmail.com>2023-04-04 18:42:29 +0200
committerJohn Molakvoæ <skjnldsv@protonmail.com>2023-04-06 15:31:37 +0200
commitf060e5a72fa152ce48dd5a32ef14c1f270aefa38 (patch)
treec50743fb55d012651ef2cfb7864e78aae4d9a051 /apps/files/tests/js/fileUploadSpec.js
parent13611824395d1a187b28f153e933b5ff56a4e566 (diff)
downloadnextcloud-server-f060e5a72fa152ce48dd5a32ef14c1f270aefa38.tar.gz
nextcloud-server-f060e5a72fa152ce48dd5a32ef14c1f270aefa38.zip
fix(tests): update jsunit tests after dep and files update
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files/tests/js/fileUploadSpec.js')
-rw-r--r--apps/files/tests/js/fileUploadSpec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/tests/js/fileUploadSpec.js b/apps/files/tests/js/fileUploadSpec.js
index 1fac6322808..e15514b39e2 100644
--- a/apps/files/tests/js/fileUploadSpec.js
+++ b/apps/files/tests/js/fileUploadSpec.js
@@ -119,7 +119,7 @@ describe('OC.Upload tests', function() {
expect(failStub.calledOnce).toEqual(true);
expect(failStub.getCall(0).args[1].textStatus).toEqual('notenoughspace');
expect(failStub.getCall(0).args[1].errorThrown).toEqual(
- 'Not enough free space, you are uploading 5 KB but only 1000 B is left'
+ 'Not enough free space, you are uploading 5 KB but only 1 KB is left'
);
setTimeout(done, 0);
});