Skip to content

Commit

Permalink
Added calling of the queries to ensure test coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
luisdalmolin committed Apr 9, 2024
1 parent c430a77 commit 6de51d9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/OrderByTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,8 @@ public function test_order_by_relationship_with_relationship_alias()
$query->toSql()
);

$query->get();

$this->assertTrue(true, 'No exceptions, we are good :)');
}

Expand All @@ -206,6 +208,8 @@ public function test_order_by_relationship_aggregation_with_relationship_alias()
$query->toSql()
);

$query->get();

$this->assertTrue(true, 'No exceptions, we are good :)');
}
}

0 comments on commit 6de51d9

Please sign in to comment.