Skip to content

Commit

Permalink
ITT: Minor fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-ivanov committed Dec 17, 2016
1 parent 5aeb205 commit a68137c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Asserts/ArtisanAsserts.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ protected function dontSeeArtisanTableOutput(array $data)

protected function seeArtisanTableRowsCount($count)
{
$message = "Failed asserting that artisan table rows count is equals to `{$count}`.";
$message = "Failed asserting that artisan table rows count equals to `{$count}`.";
$this->assertEquals($count, count($this->parseArtisanTableOutput(Artisan::output())), $message);
}

protected function dontSeeArtisanTableRowsCount($count)
{
$message = "Failed asserting that artisan table rows count is not equals to `{$count}`.";
$message = "Failed asserting that artisan table rows count not equals to `{$count}`.";
$this->assertNotEquals($count, count($this->parseArtisanTableOutput(Artisan::output())), $message);
}

Expand Down

0 comments on commit a68137c

Please sign in to comment.