diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-06-30 12:20:28 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-07-01 13:15:13 +0200 |
commit | aae55174f69dd1e079f7c79323469189b902f1e9 (patch) | |
tree | 026b7131bcaa9453452cb7d099cdedad7aaceea5 /tests | |
parent | 5caeda33f155145a74f6108326deb13314eedff2 (diff) | |
download | nextcloud-server-aae55174f69dd1e079f7c79323469189b902f1e9.tar.gz nextcloud-server-aae55174f69dd1e079f7c79323469189b902f1e9.zip |
Only do the description kung-fu on strings - fixes #17028
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/app.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/lib/app.php b/tests/lib/app.php index 9724c6e2344..485091cee4c 100644 --- a/tests/lib/app.php +++ b/tests/lib/app.php @@ -510,6 +510,10 @@ class Test_App extends \Test\TestCase { ['not-a-description' => " \t This is a multiline \n test with \n \t some new lines "], ['not-a-description' => " \t This is a multiline \n test with \n \t some new lines "] ], + [ + ['description' => [100, 'bla']], + ['description' => ""] + ], ]; } |