Skip to content

Commit

Permalink
Merge branch '6.4' into 7.1
Browse files Browse the repository at this point in the history
* 6.4:
  Update http_client.rst Test Examples
  • Loading branch information
javiereguiluz committed Dec 17, 2024
2 parents ea27c55 + 48aadc5 commit 2d48cfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions http_client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2340,7 +2340,7 @@ test it in a real application::
);
$this->assertSame($expectedRequestData, $mockResponse->getRequestOptions()['body']);

$this->assertSame($responseData, $expectedResponseData);
$this->assertSame($expectedResponseData, $responseData);
}
}

Expand Down Expand Up @@ -2373,7 +2373,7 @@ test. Then, save that information as a ``.har`` file somewhere in your applicati
$responseData = $service->createArticle($requestData);

// Assert
$this->assertSame($responseData, 'the expected response');
$this->assertSame('the expected response', $responseData);
}
}

Expand Down

0 comments on commit 2d48cfc

Please sign in to comment.