diff --git a/src/Illuminate/Foundation/Testing/TestResponse.php b/src/Illuminate/Foundation/Testing/TestResponse.php index 824709a5b182..42615e021ab2 100644 --- a/src/Illuminate/Foundation/Testing/TestResponse.php +++ b/src/Illuminate/Foundation/Testing/TestResponse.php @@ -1054,7 +1054,7 @@ public function dump() $content = $json; } - dd($content); + dump($content); } /** @@ -1064,7 +1064,7 @@ public function dump() */ public function dumpHeaders() { - dd($this->headers->all()); + dump($this->headers->all()); } /**