aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/json2phpunit.php
diff options
context:
space:
mode:
Diffstat (limited to 'tools/json2phpunit.php')
-rw-r--r--tools/json2phpunit.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/tools/json2phpunit.php b/tools/json2phpunit.php
index 9688afe..5188606 100644
--- a/tools/json2phpunit.php
+++ b/tools/json2phpunit.php
@@ -131,7 +131,6 @@ function buildAssertReturnCommandTest(array $command): array
return [
'method' => 'runAssertReturnCommand',
'args' => [
- 'module' => $command['module'] ?? null,
'action' => $command['action'],
'expected' => $command['expected'],
],
@@ -143,7 +142,6 @@ function buildAssertTrapCommandTest(array $command): array
return [
'method' => 'runAssertTrapCommand',
'args' => [
- 'module' => $command['module'] ?? null,
'action' => $command['action'],
'text' => $command['text'],
],
@@ -187,7 +185,6 @@ function buildAssertExhaustionCommandTest(array $command): array
return [
'method' => 'runAssertExhaustionCommand',
'args' => [
- 'module' => $command['module'] ?? null,
'action' => $command['action'],
'text' => $command['text'],
],
@@ -231,7 +228,6 @@ function buildActionCommandTest(array $command): array
return [
'method' => 'runActionCommand',
'args' => [
- 'module' => $command['module'] ?? null,
'action' => $command['action'],
],
];