Skip to content

Commit

Permalink
Fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ajibarra committed Sep 2, 2022
1 parent 7c20c6d commit e91de95
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions tests/comparisons/Seeds/testWithData.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,19 @@ public function run()
{
$data = [
[
'id' => 1,
'id' => '1',
'title' => 'Lorem ipsum dolor sit amet',
'description' => 'Lorem ipsum dolor sit amet, aliquet feugiat.',
'published' => 'Y',
],
[
'id' => 2,
'id' => '2',
'title' => 'Second event',
'description' => 'Second event description.',
'published' => 'Y',
],
[
'id' => 3,
'id' => '3',
'title' => 'Lorem ipsum dolor sit amet',
'description' => 'Lorem ipsum dolor sit amet, aliquet feugiat.
Convallis morbi fringilla gravida, phasellus feugiat dapibus velit nunc, pulvinar eget \'sollicitudin\' venenatis cum
Expand Down
4 changes: 2 additions & 2 deletions tests/comparisons/Seeds/testWithDataAndLimit.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ public function run()
{
$data = [
[
'id' => 1,
'id' => '1',
'title' => 'Lorem ipsum dolor sit amet',
'description' => 'Lorem ipsum dolor sit amet, aliquet feugiat.',
'published' => 'Y',
],
[
'id' => 2,
'id' => '2',
'title' => 'Second event',
'description' => 'Second event description.',
'published' => 'Y',
Expand Down

0 comments on commit e91de95

Please sign in to comment.