diff options
Diffstat (limited to 'tests/Components/OrderKeywordTest.php')
-rw-r--r-- | tests/Components/OrderKeywordTest.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/Components/OrderKeywordTest.php b/tests/Components/OrderKeywordTest.php index df8c95c..a89a365 100644 --- a/tests/Components/OrderKeywordTest.php +++ b/tests/Components/OrderKeywordTest.php @@ -2,22 +2,19 @@ namespace SqlParser\Tests\Components; -use SqlParser\Parser; use SqlParser\Components\Expression; use SqlParser\Components\OrderKeyword; - use SqlParser\Tests\TestCase; class OrderKeywordTest extends TestCase { - public function testBuild() { $this->assertEquals( OrderKeyword::build( array( new OrderKeyword(new Expression('a'), 'ASC'), - new OrderKeyword(new Expression('b'), 'DESC') + new OrderKeyword(new Expression('b'), 'DESC'), ) ), 'a ASC, b DESC' |