Author: phd
Date: 2010-03-22 11:16:28 -0600 (Mon, 22 Mar 2010)
New Revision: 4151
Modified:
SQLObject/branches/0.11/sqlobject/tests/test_unicode.py
Log:
Removed debugging prints.
Modified: SQLObject/branches/0.11/sqlobject/tests/test_unicode.py
===================================================================
--- SQLObject/branches/0.11/sqlobject/tests/test_unicode.py 2010-03-22 17:14:23 UTC (rev 4150)
+++ SQLObject/branches/0.11/sqlobject/tests/test_unicode.py 2010-03-22 17:16:28 UTC (rev 4151)
@@ -25,8 +25,6 @@
def test_create():
setup()
for s, item in zip(data, items):
- print type(item.col1), repr(item.col1)
- print type(item.col2), repr(item.col1)
assert item.col1 == s
assert item.col2 == s
|