aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/json2phpunit.php
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-07-11 20:02:34 +0900
committernsfisis <nsfisis@gmail.com>2024-07-11 20:02:34 +0900
commitd1c268b76f65e69ea708096d5023c4d731cff594 (patch)
treee48836287272388df613a370fda7a46598c517f8 /tools/json2phpunit.php
parente4324d3d1d3bf3568d4e2f3b80c9cc324d324f83 (diff)
downloadphp-waddiwasi-d1c268b76f65e69ea708096d5023c4d731cff594.tar.gz
php-waddiwasi-d1c268b76f65e69ea708096d5023c4d731cff594.tar.zst
php-waddiwasi-d1c268b76f65e69ea708096d5023c4d731cff594.zip
fix: various spectests
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'],
],
];