Skip to content

Commit

Permalink
fix status code check
Browse files Browse the repository at this point in the history
Signed-off-by: prashant-gurung899 <[email protected]>
  • Loading branch information
prashant-gurung899 committed Jun 21, 2024
1 parent 2857151 commit 5b3edcf
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 5b3edcf

Please sign in to comment.