Skip to content

Commit 3dd2a32

Browse files
authored
Remove trailing full stop from error message (#41503)
1 parent 3363250 commit 3dd2a32

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Illuminate/Testing/Constraints/HasInDatabase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ protected function getAdditionalInfo($table)
9191
$results = $query->limit($this->show)->get();
9292

9393
if ($results->isEmpty()) {
94-
return 'The table is empty.';
94+
return 'The table is empty';
9595
}
9696

9797
$description = 'Found: '.json_encode($results, JSON_PRETTY_PRINT);

0 commit comments

Comments
 (0)