Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[5.6] Allow asserting an integer with assertSee() #23892

Merged
merged 1 commit into from
Apr 17, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Illuminate/Foundation/Testing/TestResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ protected function getCookie($cookieName)
*/
public function assertSee($value)
{
PHPUnit::assertContains($value, $this->getContent());
PHPUnit::assertContains((string) $value, $this->getContent());

return $this;
}
Expand All @@ -307,7 +307,7 @@ public function assertSeeInOrder(array $values)
*/
public function assertSeeText($value)
{
PHPUnit::assertContains($value, strip_tags($this->getContent()));
PHPUnit::assertContains((string) $value, strip_tags($this->getContent()));

return $this;
}
Expand All @@ -333,7 +333,7 @@ public function assertSeeTextInOrder(array $values)
*/
public function assertDontSee($value)
{
PHPUnit::assertNotContains($value, $this->getContent());
PHPUnit::assertNotContains((string) $value, $this->getContent());

return $this;
}
Expand All @@ -346,7 +346,7 @@ public function assertDontSee($value)
*/
public function assertDontSeeText($value)
{
PHPUnit::assertNotContains($value, strip_tags($this->getContent()));
PHPUnit::assertNotContains((string) $value, strip_tags($this->getContent()));

return $this;
}
Expand Down