diff options
| author | Andi Albrecht <albrecht.andi@gmail.com> | 2009-04-30 06:58:49 +0200 |
|---|---|---|
| committer | Andi Albrecht <albrecht.andi@gmail.com> | 2009-04-30 06:58:49 +0200 |
| commit | dcf78718d3761e222a8f62f6c2b3a3f215584d45 (patch) | |
| tree | 8fe80b11bf07b9bbfaa794863553570d4f36b974 /tests | |
| parent | e2c49dd30390ab7442c0c6dc3d599f57f410290e (diff) | |
| download | sqlparse-dcf78718d3761e222a8f62f6c2b3a3f215584d45.tar.gz | |
Turn relative import in tests module to absolute imports.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/test_parse.py | 2 | ||||
| -rw-r--r-- | tests/test_split.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_parse.py b/tests/test_parse.py index 536b6f6..3ee2203 100644 --- a/tests/test_parse.py +++ b/tests/test_parse.py @@ -2,7 +2,7 @@ """Tests sqlparse function.""" -from utils import TestCaseBase +from tests.utils import TestCaseBase import sqlparse diff --git a/tests/test_split.py b/tests/test_split.py index 782b226..5146bcb 100644 --- a/tests/test_split.py +++ b/tests/test_split.py @@ -4,7 +4,7 @@ import unittest -from utils import load_file, TestCaseBase +from tests.utils import load_file, TestCaseBase import sqlparse |
