summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoradityagoyal <ang.adityagoyal@yahoo.com>2013-07-06 02:54:04 +0530
committeradityagoyal <ang.adityagoyal@yahoo.com>2013-07-06 02:54:04 +0530
commit2b09b47a83dc2d8ce2248e7e4926e7adfd4f0b85 (patch)
tree737b13f566b0c0833f3d91b237287b52d00fbf3f
parent3f39d54f21236e9afdf0e53f759c430d0fae9365 (diff)
downloadsql-formatter-2b09b47a83dc2d8ce2248e7e4926e7adfd4f0b85.zip
sql-formatter-2b09b47a83dc2d8ce2248e7e4926e7adfd4f0b85.tar.gz
sql-formatter-2b09b47a83dc2d8ce2248e7e4926e7adfd4f0b85.tar.bz2
Revert "test case"
This reverts commit 3f39d54f21236e9afdf0e53f759c430d0fae9365.
-rw-r--r--tests/SqlFormatterTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/SqlFormatterTest.php b/tests/SqlFormatterTest.php
index 333483c..c3726fe 100644
--- a/tests/SqlFormatterTest.php
+++ b/tests/SqlFormatterTest.php
@@ -72,7 +72,7 @@ class SqlFormatterTest extends PHPUnit_Framework_TestCase {
}
function testRemoveComments() {
- $expected = SqlFormatter::format("SELECT\n * FROM\n MyTable",false);
+ $expected = SqlFormatter::format("SELECT\n * FROM\n MyTable");
$sql = "/* this is a comment */SELECT#This is another comment\n * FROM-- One final comment\n MyTable";
$actual = SqlFormatter::removeComments($sql);