diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2019-07-21 20:29:11 +0200 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2019-07-21 20:29:11 +0200 |
commit | 8bed3021bd0e78105f74d0ff2d948bf720eb2e4d (patch) | |
tree | 20f20df6dff140793eb38cfa1d6a89e7eb4f7da2 /tests | |
parent | 5b604eaeaba7d5ee5dd12a92f37c9e8e7519c9c2 (diff) | |
download | nextcloud-server-8bed3021bd0e78105f74d0ff2d948bf720eb2e4d.tar.gz nextcloud-server-8bed3021bd0e78105f74d0ff2d948bf720eb2e4d.zip |
Exclude .rnd files from integrity check
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/IntegrityCheck/Iterator/ExcludeFileByNameFilterIteratorTest.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/lib/IntegrityCheck/Iterator/ExcludeFileByNameFilterIteratorTest.php b/tests/lib/IntegrityCheck/Iterator/ExcludeFileByNameFilterIteratorTest.php index 124618eb538..8d5c38d275a 100644 --- a/tests/lib/IntegrityCheck/Iterator/ExcludeFileByNameFilterIteratorTest.php +++ b/tests/lib/IntegrityCheck/Iterator/ExcludeFileByNameFilterIteratorTest.php @@ -45,6 +45,7 @@ class ExcludeFileByNameFilterIteratorTest extends TestCase { ['.webapp-nextcloud-15.0.2', false], ['.webapp-nextcloud-14.0.5-r3', false], ['wx.webapp-nextcloud-obee', true], + ['.rnd', false], ]; } |