Skip to content

Commit

Permalink
Merge pull request #28960 from d3jn/fix-test-response-dump
Browse files Browse the repository at this point in the history
[5.8] Prevent TestRespone dump methods from ending execution of the script
  • Loading branch information
taylorotwell authored Jun 26, 2019
2 parents 1d8ec9a + e557611 commit 6d4d15f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Illuminate/Foundation/Testing/TestResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@ public function dump()
$content = $json;
}

dd($content);
dump($content);
}

/**
Expand All @@ -1064,7 +1064,7 @@ public function dump()
*/
public function dumpHeaders()
{
dd($this->headers->all());
dump($this->headers->all());
}

/**
Expand Down

0 comments on commit 6d4d15f

Please sign in to comment.