summaryrefslogtreecommitdiff
path: root/tests/test_parse.py
diff options
context:
space:
mode:
authorVictor Uriarte <victor.m.uriarte@intel.com>2016-06-18 22:51:51 -0700
committerVictor Uriarte <victor.m.uriarte@intel.com>2016-06-20 07:40:20 -0700
commit63c369364aeb4591983102889f604dca8d266f2e (patch)
treee600a26f157325845c4928da485ca00dd28749e7 /tests/test_parse.py
parentc56652ef9fdac111dd59e26b913765719eaf1141 (diff)
downloadsqlparse-63c369364aeb4591983102889f604dca8d266f2e.tar.gz
Replace ndiffAssertEqual with Py.Test
Diffstat (limited to 'tests/test_parse.py')
-rw-r--r--tests/test_parse.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_parse.py b/tests/test_parse.py
index 75a7ab5..d8a8c27 100644
--- a/tests/test_parse.py
+++ b/tests/test_parse.py
@@ -4,12 +4,11 @@
import pytest
-from tests.utils import TestCaseBase
-
import sqlparse
import sqlparse.sql
from sqlparse import tokens as T
from sqlparse.compat import u, StringIO
+from tests.utils import TestCaseBase
class SQLParseTest(TestCaseBase):