Skip to content

Commit

Permalink
cs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
LaravelFreelancerNL committed Dec 5, 2020
1 parent 297980f commit 878df13
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 0 additions & 1 deletion tests/Unit/AQL/DateFunctionsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,5 +116,4 @@ public function testDateFormat()
$qb->return($qb->dateFormat(1399472349522, "%q/%yyyy"));
self::assertEquals('RETURN DATE_FORMAT(1399472349522, @' . $qb->getQueryId() . '_1)', $qb->get()->query);
}

}
8 changes: 7 additions & 1 deletion tests/Unit/AQL/StringFunctionsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ public function testConcat()
{
$qb = new QueryBuilder();
$qb->return($qb->concat('string', 'this', 'together'));
self::assertEquals('RETURN CONCAT(@' . $qb->getQueryId() . '_1, @' . $qb->getQueryId() . '_2, @' . $qb->getQueryId() . '_3)', $qb->get()->query);
self::assertEquals(
'RETURN CONCAT(@'
. $qb->getQueryId() . '_1, @'
. $qb->getQueryId() . '_2, @'
. $qb->getQueryId() . '_3)',
$qb->get()->query
);
}
}

0 comments on commit 878df13

Please sign in to comment.