Skip to content

Commit 5e7b4fe

Browse files
committed
test: fix incorrect assertions
1 parent 6a31be4 commit 5e7b4fe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/system/HTTP/CLIRequestTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -599,16 +599,16 @@ public function testGetGet()
599599

600600
public function testGetPost()
601601
{
602-
$this->assertSame([], $this->request->getGet());
602+
$this->assertSame([], $this->request->getPost());
603603
}
604604

605605
public function testGetPostGet()
606606
{
607-
$this->assertSame([], $this->request->getGet());
607+
$this->assertSame([], $this->request->getPostGet());
608608
}
609609

610610
public function testGetGetPost()
611611
{
612-
$this->assertSame([], $this->request->getGet());
612+
$this->assertSame([], $this->request->getGetPost());
613613
}
614614
}

0 commit comments

Comments
 (0)