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:
authorDaniel Kesselberg <mail@danielkesselberg.de>2019-02-14 14:00:47 +0300
committerDaniel Kesselberg <mail@danielkesselberg.de>2019-02-14 14:11:30 +0300
commitb14700c9360b2589d35b20b00bc5b863d7fb8243 (patch)
tree7509b445c89ec6c4b84e3267cf530d8e8907c5b6 /tests/lib/IntegrityCheck
parent7404c10666e4ec5283b4a5b2d4c2ffc412b7a64b (diff)
Use more precise regex
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'tests/lib/IntegrityCheck')
-rw-r--r--tests/lib/IntegrityCheck/Iterator/ExcludeFileByNameFilterIteratorTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/IntegrityCheck/Iterator/ExcludeFileByNameFilterIteratorTest.php b/tests/lib/IntegrityCheck/Iterator/ExcludeFileByNameFilterIteratorTest.php
index 335f6e3fd3d..124618eb538 100644
--- a/tests/lib/IntegrityCheck/Iterator/ExcludeFileByNameFilterIteratorTest.php
+++ b/tests/lib/IntegrityCheck/Iterator/ExcludeFileByNameFilterIteratorTest.php
@@ -34,7 +34,6 @@ class ExcludeFileByNameFilterIteratorTest extends TestCase {
->disableOriginalConstructor()
->setMethods(['current'])
->getMock();
-
}
public function fileNameProvider(): array {
@@ -43,7 +42,8 @@ class ExcludeFileByNameFilterIteratorTest extends TestCase {
['Thumbs.db', false],
['another file', true],
['.directory', false],
- ['.webapp-nextcloud-12.0.5', false],
+ ['.webapp-nextcloud-15.0.2', false],
+ ['.webapp-nextcloud-14.0.5-r3', false],
['wx.webapp-nextcloud-obee', true],
];
}