summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAmjith Ramanujam <amjith@newrelic.com>2015-01-01 00:16:43 -0800
committerAmjith Ramanujam <amjith@newrelic.com>2015-01-01 00:16:43 -0800
commita4460f17cc6684023935afb904c07cb0be5d1550 (patch)
treee792c8d1595742af92b9558e10c8ebaef1870404
parentcb64ae90990bb4a5d05e7b2131fdf924e07c3717 (diff)
Remove the debug statment left in tests.
-rw-r--r--tests/test_sqlcompletion.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/test_sqlcompletion.py b/tests/test_sqlcompletion.py
index 3b76653b..bcc6afc8 100644
--- a/tests/test_sqlcompletion.py
+++ b/tests/test_sqlcompletion.py
@@ -66,7 +66,6 @@ def test_dot_suggests_cols_of_an_alias():
assert suggestion == ('columns', ['tabl1'])
def test_dot_col_comma_suggests_cols():
- import pdb; pdb.set_trace()
suggestion = suggest_type('SELECT t1.a, t2. FROM tabl1 t1, tabl2 t2',
'SELECT t1.a, t2.')
assert suggestion == ('columns', ['tabl2'])