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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/tests/Settings/SectionTest.php')
-rw-r--r--apps/files_external/tests/Settings/SectionTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files_external/tests/Settings/SectionTest.php b/apps/files_external/tests/Settings/SectionTest.php
index fe9dde4f54a..96bf1cd1eb9 100644
--- a/apps/files_external/tests/Settings/SectionTest.php
+++ b/apps/files_external/tests/Settings/SectionTest.php
@@ -57,10 +57,10 @@ class SectionTest extends TestCase {
$this->l
->expects($this->once())
->method('t')
- ->with('External storages')
- ->willReturn('External storages');
+ ->with('External storage')
+ ->willReturn('External storage');
- $this->assertSame('External storages', $this->section->getName());
+ $this->assertSame('External storage', $this->section->getName());
}
public function testGetPriority() {