diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-10-19 23:17:39 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2016-10-20 15:40:27 +0200 |
commit | ef842ef20a9fb9330173b09c4f889bd2264c8f87 (patch) | |
tree | 4a7c74d08bb9d1bdf3a55d812b4b87bc92302ded /tests/lib/App | |
parent | 7836a8d8c79dfec97e07214495fd77b39ae8b5e1 (diff) | |
download | nextcloud-server-ef842ef20a9fb9330173b09c4f889bd2264c8f87.tar.gz nextcloud-server-ef842ef20a9fb9330173b09c4f889bd2264c8f87.zip |
Ensure $commands being an array - fixes #26073
Diffstat (limited to 'tests/lib/App')
-rw-r--r-- | tests/lib/App/DependencyAnalyzerTest.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/lib/App/DependencyAnalyzerTest.php b/tests/lib/App/DependencyAnalyzerTest.php index eb1142afd9d..091479798b3 100644 --- a/tests/lib/App/DependencyAnalyzerTest.php +++ b/tests/lib/App/DependencyAnalyzerTest.php @@ -266,6 +266,7 @@ class DependencyAnalyzerTest extends TestCase { [[], [['@attributes' => ['os' => 'Windows'], '@value' => 'grepp']]], // grep is known on all systems [[], 'grep'], + [[], ['@attributes' => ['os' => 'Linux'], '@value' => 'grep']], ]; } |