diff options
Diffstat (limited to 'tests/Components/OrderKeywordTest.php')
-rw-r--r-- | tests/Components/OrderKeywordTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/Components/OrderKeywordTest.php b/tests/Components/OrderKeywordTest.php index c0777ec..ffacfd4 100644 --- a/tests/Components/OrderKeywordTest.php +++ b/tests/Components/OrderKeywordTest.php @@ -12,10 +12,10 @@ class OrderKeywordTest extends TestCase { $this->assertEquals( OrderKeyword::build( - array( + [ new OrderKeyword(new Expression('a'), 'ASC'), new OrderKeyword(new Expression('b'), 'DESC'), - ) + ] ), 'a ASC, b DESC' ); |