summaryrefslogtreecommitdiffstats
path: root/tests/Utils
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Utils')
-rw-r--r--tests/Utils/QueryTest.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/Utils/QueryTest.php b/tests/Utils/QueryTest.php
index b3f0ab6..b5135c0 100644
--- a/tests/Utils/QueryTest.php
+++ b/tests/Utils/QueryTest.php
@@ -457,7 +457,7 @@ class QueryTest extends TestCase
);
}
- public function testRepalceClauses()
+ public function testReplaceClauses()
{
$this->assertEquals('', Query::replaceClauses(null, null, array()));
@@ -475,18 +475,18 @@ class QueryTest extends TestCase
$parser = new Parser(
'SELECT c.city_id, c.country_id ' .
+ 'INTO OUTFILE "/dev/null" ' .
'FROM `city` ' .
'WHERE city_id < 1 ' .
'ORDER BY city_id ASC ' .
- 'LIMIT 0, 1 ' .
- 'INTO OUTFILE "/dev/null"'
+ 'LIMIT 0, 1 '
);
$this->assertEquals(
'SELECT c.city_id, c.country_id ' .
+ 'INTO OUTFILE "/dev/null" ' .
'FROM city AS c ' .
'ORDER BY city_id ASC ' .
- 'LIMIT 0, 10 ' .
- 'INTO OUTFILE "/dev/null"',
+ 'LIMIT 0, 10 ',
Query::replaceClauses(
$parser->statements[0],
$parser->list,