diff --git a/src/Concerns/MakesHttpRequests.php b/src/Concerns/MakesHttpRequests.php index 7ba714c..1fcdf31 100644 --- a/src/Concerns/MakesHttpRequests.php +++ b/src/Concerns/MakesHttpRequests.php @@ -415,21 +415,6 @@ protected function seeJsonContains(array $data, $negate = false) return $this; } - /** - * Assert that the response is a superset of the given JSON. - * - * @param array $data - * @return $this - * - * @deprecated This method will be removed in 5.0 - */ - protected function seeJsonSubset(array $data) - { - $this->assertArraySubset($data, $this->decodeResponseJson()); - - return $this; - } - /** * Validate and return the decoded response JSON. *