Skip to content

Commit e3034db

Browse files
committed
Fix FPM tester conflict
1 parent f3c357c commit e3034db

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

sapi/fpm/tests/tester.inc

+2-9
Original file line numberDiff line numberDiff line change
@@ -619,12 +619,9 @@ class Tester
619619
string $errorMessage = null,
620620
bool $connKeepAlive = false,
621621
string $scriptFilename = null,
622-
<<<<<<< HEAD
623-
string $stdin = null
624-
=======
622+
string $stdin = null,
625623
bool $expectError = false,
626624
int $readLimit = -1,
627-
>>>>>>> PHP-8.1
628625
) {
629626
if ($this->hasError()) {
630627
return new Response(null, true);
@@ -634,11 +631,7 @@ class Tester
634631

635632
try {
636633
$this->response = new Response(
637-
<<<<<<< HEAD
638-
$this->getClient($address, $connKeepAlive)->request_data($params, $stdin)
639-
=======
640-
$this->getClient($address, $connKeepAlive)->request_data($params, false, $readLimit)
641-
>>>>>>> PHP-8.1
634+
$this->getClient($address, $connKeepAlive)->request_data($params, $stdin, $readLimit)
642635
);
643636
if ($expectError) {
644637
$this->error('Expected request error but the request was successful');

0 commit comments

Comments
 (0)