diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-07-23 14:57:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-23 14:57:55 +0200 |
commit | d5b524ae07782c2948fbcc9391407e2a32bac575 (patch) | |
tree | 7b8a7d15b2668b3d8fd4e49ffa3a6f308da2777d /tests | |
parent | 4902e843464a20ae3acf4e2279d3069afead33b4 (diff) | |
parent | 8bed3021bd0e78105f74d0ff2d948bf720eb2e4d (diff) | |
download | nextcloud-server-d5b524ae07782c2948fbcc9391407e2a32bac575.tar.gz nextcloud-server-d5b524ae07782c2948fbcc9391407e2a32bac575.zip |
Merge pull request #16492 from nextcloud/enh/exclude-rnd-files
Exclude .rnd files from integrity check
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], ]; } |