summaryrefslogtreecommitdiffstats
path: root/tests/php/Chat/Command/ShellExecutorTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/php/Chat/Command/ShellExecutorTest.php')
-rw-r--r--tests/php/Chat/Command/ShellExecutorTest.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/php/Chat/Command/ShellExecutorTest.php b/tests/php/Chat/Command/ShellExecutorTest.php
index 2f1920bc5..4d26bb3c9 100644
--- a/tests/php/Chat/Command/ShellExecutorTest.php
+++ b/tests/php/Chat/Command/ShellExecutorTest.php
@@ -27,7 +27,7 @@ use OCA\Talk\Chat\Command\ShellExecutor;
use Test\TestCase;
class ShellExecutorTest extends TestCase {
- public function dataExecShellRun(): array {
+ public static function dataExecShellRun(): array {
return [
['admin', 'token', 'echo {ARGUMENTS}', '$PATH', '$PATH'],
['admin', 'token', 'echo {ARGUMENTS}', '$(pwd)', '$(pwd)'],
@@ -72,7 +72,7 @@ class ShellExecutorTest extends TestCase {
$this->assertSame($output, $executor->execShell($cmd, $arguments, $roomToken, $actorId));
}
- public function dataExecShell(): array {
+ public static function dataExecShell(): array {
return [
['admin', 'token', '', '', '', ''],
['admin', 'token', '/var/www/nextcloud/script.sh {USER} {ROOM} {ARGUMENTS}', 'foo bar "hello bear"', "/var/www/nextcloud/script.sh 'admin' 'token' 'foo bar \"hello bear\"'", 'output1'],