Skip to content

Commit

Permalink
Merge pull request #9430 from prashant-gurung899/check-status-code
Browse files Browse the repository at this point in the history
[full-ci][tests-only] fix status code check in theUserCreatesASpaceWithQuotaUsingTheGraphApi in SpacesContext
  • Loading branch information
phil-davis authored Jun 21, 2024
2 parents 981d942 + 587bf1b commit a9ecd0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/acceptance/features/bootstrap/SpacesContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ public function theUserCreatesASpaceWithQuotaUsingTheGraphApi(
$this->featureContext->getStepLineRef()
);
$this->featureContext->setResponse($response);
if ($response->getStatusCode() === '201') {
if ($response->getStatusCode() === 201) {
$this->addCreatedSpace($user, $response);
}
}
Expand Down

0 comments on commit a9ecd0c

Please sign in to comment.