[SQL-CVS] r4153 - SQLObject/trunk/sqlobject/tests
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
|
From: <sub...@co...> - 2010-03-22 17:18:42
|
Author: phd
Date: 2010-03-22 11:18:36 -0600 (Mon, 22 Mar 2010)
New Revision: 4153
Modified:
SQLObject/trunk/sqlobject/tests/test_unicode.py
Log:
Merged revision 4151 from branch 011: removed debugging prints.
Modified: SQLObject/trunk/sqlobject/tests/test_unicode.py
===================================================================
--- SQLObject/trunk/sqlobject/tests/test_unicode.py 2010-03-22 17:18:17 UTC (rev 4152)
+++ SQLObject/trunk/sqlobject/tests/test_unicode.py 2010-03-22 17:18:36 UTC (rev 4153)
@@ -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
|