diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-07-30 16:07:46 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-07-30 16:07:46 +0200 |
commit | 22fd04eb4117e80341becce13190d5a8fcea98ca (patch) | |
tree | 3b1d465b152a6885da7bc7458312cf3acc94543b /tests | |
parent | 80810ae10fc7ea40a8ffe1c6f4672f5f2096f402 (diff) | |
parent | 52cd4efc8324559215cb14f3f7bbc61f55e4c1d2 (diff) | |
download | nextcloud-server-22fd04eb4117e80341becce13190d5a8fcea98ca.tar.gz nextcloud-server-22fd04eb4117e80341becce13190d5a8fcea98ca.zip |
Merge pull request #17981 from owncloud/correct-regex
Correct regular expressions
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/files/pathverificationtest.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/lib/files/pathverificationtest.php b/tests/lib/files/pathverificationtest.php index b59aceba7b1..13fccd310f3 100644 --- a/tests/lib/files/pathverificationtest.php +++ b/tests/lib/files/pathverificationtest.php @@ -83,6 +83,10 @@ class PathVerification extends \Test\TestCase { return [ // this is the monkey emoji - http://en.wikipedia.org/w/index.php?title=%F0%9F%90%B5&redirect=no ['🐵'], + ['🐵.txt'], + ['txt.💩'], + ['💩🐵.txt'], + ['💩🐵'], ]; } |