aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/src/SpecTestsuites/Core/ForwardTest.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 /tests/src/SpecTestsuites/Core/ForwardTest.php
parente4324d3d1d3bf3568d4e2f3b80c9cc324d324f83 (diff)
downloadphp-waddiwasi-d1c268b76f65e69ea708096d5023c4d731cff594.tar.gz
php-waddiwasi-d1c268b76f65e69ea708096d5023c4d731cff594.tar.zst
php-waddiwasi-d1c268b76f65e69ea708096d5023c4d731cff594.zip
fix: various spectests
Diffstat (limited to 'tests/src/SpecTestsuites/Core/ForwardTest.php')
-rw-r--r--tests/src/SpecTestsuites/Core/ForwardTest.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/src/SpecTestsuites/Core/ForwardTest.php b/tests/src/SpecTestsuites/Core/ForwardTest.php
index 3573991..fc4d4ec 100644
--- a/tests/src/SpecTestsuites/Core/ForwardTest.php
+++ b/tests/src/SpecTestsuites/Core/ForwardTest.php
@@ -23,7 +23,6 @@ final class ForwardTest extends SpecTestsuiteBase
public function testAssertReturn1(): void
{
$this->runAssertReturnCommand(
- module: null,
action: ['type' => 'invoke', 'field' => 'even', 'args' => [['type' => 'i32', 'value' => '13']]],
expected: [['type' => 'i32', 'value' => '0']],
line: 17,
@@ -34,7 +33,6 @@ final class ForwardTest extends SpecTestsuiteBase
public function testAssertReturn2(): void
{
$this->runAssertReturnCommand(
- module: null,
action: ['type' => 'invoke', 'field' => 'even', 'args' => [['type' => 'i32', 'value' => '20']]],
expected: [['type' => 'i32', 'value' => '1']],
line: 18,
@@ -45,7 +43,6 @@ final class ForwardTest extends SpecTestsuiteBase
public function testAssertReturn3(): void
{
$this->runAssertReturnCommand(
- module: null,
action: ['type' => 'invoke', 'field' => 'odd', 'args' => [['type' => 'i32', 'value' => '13']]],
expected: [['type' => 'i32', 'value' => '1']],
line: 19,
@@ -56,7 +53,6 @@ final class ForwardTest extends SpecTestsuiteBase
public function testAssertReturn4(): void
{
$this->runAssertReturnCommand(
- module: null,
action: ['type' => 'invoke', 'field' => 'odd', 'args' => [['type' => 'i32', 'value' => '20']]],
expected: [['type' => 'i32', 'value' => '0']],
line: 20,