Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/files_texteditor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2015-10-05 14:10:30 +0300
committerLukas Reschke <lukas@owncloud.com>2015-10-05 14:10:30 +0300
commit3e3053c2cdbb24d6be9d65500e8b632b792fc997 (patch)
tree2ee9b9a1071e5d510235654d71828fcfca11f61f /tests
parent789040885fafce5731eeb191b5b229cc052573c3 (diff)
Use correct error string
Diffstat (limited to 'tests')
-rw-r--r--tests/controller/filehandlingcontrollertest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/controller/filehandlingcontrollertest.php b/tests/controller/filehandlingcontrollertest.php
index 0fa689a..3e78c1d 100644
--- a/tests/controller/filehandlingcontrollertest.php
+++ b/tests/controller/filehandlingcontrollertest.php
@@ -187,7 +187,7 @@ class FileHandlingControllerTest extends TestCase {
$status = $result->getStatus();
$this->assertSame(400, $status);
$this->assertArrayHasKey('message', $data);
- $this->assertSame('The file is too big.', $data['message']);
+ $this->assertSame('This file is too big to be opened. Please download the file instead.', $data['message']);
}
public function dataTestSave() {