summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/Builder/LoadStatementTest.php5
-rw-r--r--tests/Parser/LoadStatementTest.php2
2 files changed, 1 insertions, 6 deletions
diff --git a/tests/Builder/LoadStatementTest.php b/tests/Builder/LoadStatementTest.php
index 2ef6236..4c4e9b1 100644
--- a/tests/Builder/LoadStatementTest.php
+++ b/tests/Builder/LoadStatementTest.php
@@ -37,7 +37,6 @@ class LoadStatementTest extends TestCase
$stmt->build()
);
-
/* Assertion 3 */
$query = 'LOAD DATA INFILE \'employee3.txt\' '
. 'INTO TABLE employee FIELDS TERMINATED BY '
@@ -53,7 +52,6 @@ class LoadStatementTest extends TestCase
$stmt->build()
);
-
/* Assertion 4 */
$query = 'LOAD DATA INFILE \'/tmp/test.txt\' IGNORE '
. 'INTO TABLE test '
@@ -75,7 +73,6 @@ class LoadStatementTest extends TestCase
$stmt->build()
);
-
/* Assertion 5 */
$query = 'LOAD DATA INFILE \'/tmp/test.txt\' REPLACE '
. 'INTO TABLE test COLUMNS TERMINATED BY \',\' IGNORE 1 ROWS';
@@ -89,7 +86,6 @@ class LoadStatementTest extends TestCase
$stmt->build()
);
-
/* Assertion 6 */
$query = 'LOAD DATA INFILE \'/tmp/test.txt\' IGNORE '
. 'INTO TABLE test PARTITION (p0, p1, p2) CHARACTER SET \'utf8\' '
@@ -107,5 +103,4 @@ class LoadStatementTest extends TestCase
$stmt->build()
);
}
-
}
diff --git a/tests/Parser/LoadStatementTest.php b/tests/Parser/LoadStatementTest.php
index 32b5707..089b1f4 100644
--- a/tests/Parser/LoadStatementTest.php
+++ b/tests/Parser/LoadStatementTest.php
@@ -39,7 +39,7 @@ class LoadStatementTest extends TestCase
array('parser/parseLoadErr3'),
array('parser/parseLoadErr4'),
array('parser/parseLoadErr5'),
- array('parser/parseLoadErr6')
+ array('parser/parseLoadErr6'),
);
}
}