diff options
author | rakekniven <mark.ziegler@rakekniven.de> | 2018-03-03 15:55:32 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-03-10 12:57:09 +0100 |
commit | bcdbbb56b023444c46f741312222fd15c9d90481 (patch) | |
tree | 78f20ca170a07bb42d2269191a4e1653e6c6caf0 /apps | |
parent | 746022ce460ac4ce86934d8eac42dcbba6f7f3c1 (diff) | |
download | nextcloud-server-bcdbbb56b023444c46f741312222fd15c9d90481.tar.gz nextcloud-server-bcdbbb56b023444c46f741312222fd15c9d90481.zip |
Update ThemingControllerTest.php
Fixed tests for https://github.com/nextcloud/server/pull/8633
Diffstat (limited to 'apps')
-rw-r--r-- | apps/theming/tests/Controller/ThemingControllerTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/tests/Controller/ThemingControllerTest.php b/apps/theming/tests/Controller/ThemingControllerTest.php index debc1b71e47..25c5686dda1 100644 --- a/apps/theming/tests/Controller/ThemingControllerTest.php +++ b/apps/theming/tests/Controller/ThemingControllerTest.php @@ -526,7 +526,7 @@ class ThemingControllerTest extends TestCase { return [ [UPLOAD_ERR_INI_SIZE, 'The uploaded file exceeds the upload_max_filesize directive in php.ini'], [UPLOAD_ERR_FORM_SIZE, 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form'], - [UPLOAD_ERR_PARTIAL, 'The uploaded file was only partially uploaded'], + [UPLOAD_ERR_PARTIAL, 'The file was only partially uploaded'], [UPLOAD_ERR_NO_FILE, 'No file was uploaded'], [UPLOAD_ERR_NO_TMP_DIR, 'Missing a temporary folder'], [UPLOAD_ERR_CANT_WRITE, 'Failed to write file to disk.'], |