diff options
author | Jesús Leganés Combarro "Piranna <jesus.lc@vaelsys.com> | 2012-05-23 19:02:48 +0200 |
---|---|---|
committer | Jesús Leganés Combarro "Piranna <jesus.lc@vaelsys.com> | 2012-05-23 19:02:48 +0200 |
commit | a18c97f796737b9a8ec57e56e185dead9b6e881a (patch) | |
tree | a806e9f48caa590f19eb5fbe266816b4279a39e5 /tests/test_functions.py | |
parent | 564d5f33c5a12f6ffab449a82703550037c6d6a9 (diff) | |
download | sqlparse-a18c97f796737b9a8ec57e56e185dead9b6e881a.tar.gz |
Fixed test_includeStatement
Diffstat (limited to 'tests/test_functions.py')
-rw-r--r-- | tests/test_functions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_functions.py b/tests/test_functions.py index 1d2be9c..aa382ce 100644 --- a/tests/test_functions.py +++ b/tests/test_functions.py @@ -27,7 +27,7 @@ class Test_IncludeStatement(TestCase): def test_includeStatement(self): stream = tokenize(self.sql) - includeStatement = IncludeStatement('tests/files') + includeStatement = IncludeStatement('tests/files', raiseexceptions=True) stream = includeStatement.process(None, stream) stream = compact(stream) |