1
1
mirror of https://github.com/dbcli/pgcli.git synced 2024-10-06 02:07:53 +03:00

Remove the debug statment left in tests.

This commit is contained in:
Amjith Ramanujam 2015-01-01 00:16:43 -08:00
parent cb64ae9099
commit a4460f17cc

View File

@ -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'])