Skip to content

Commit a68137c

Browse files
committed
ITT: Minor fixes.
1 parent 5aeb205 commit a68137c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Asserts/ArtisanAsserts.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ protected function dontSeeArtisanTableOutput(array $data)
3434

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

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

0 commit comments

Comments
 (0)