Skip to content

Commit

Permalink
Update checks for UrlMatcher
Browse files Browse the repository at this point in the history
  • Loading branch information
ollwells committed Mar 18, 2024
1 parent 5705431 commit 1f9f704
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.stylelint": true
"source.fixAll.stylelint": "explicit"
},
"prettier.enable": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
Expand Down
2 changes: 1 addition & 1 deletion src/Matchers/UrlMatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ private function requestBodyDifferent(RequestInterface $request): bool
return false;
}

return $this->body !== $request->getBody()->getContents();
return $this->body != $request->getBody()->getContents();
}

private function requestMethodDifferent(RequestInterface $request): bool
Expand Down

0 comments on commit 1f9f704

Please sign in to comment.