[SQL-CVS] r4461 - SQLObject/trunk/sqlobject/tests
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
From: <sub...@co...> - 2011-10-10 14:35:23
|
Author: phd Date: Mon Oct 10 08:35:13 2011 New Revision: 4461 Log: Fixed a test - Select() now doesn't quote item names strings. Modified: SQLObject/trunk/sqlobject/tests/test_converters.py Modified: SQLObject/trunk/sqlobject/tests/test_converters.py ============================================================================== --- SQLObject/trunk/sqlobject/tests/test_converters.py Thu Sep 29 10:11:13 2011 (r4460) +++ SQLObject/trunk/sqlobject/tests/test_converters.py Mon Oct 10 08:35:13 2011 (r4461) @@ -111,7 +111,7 @@ def test_select(): instance = Select('test') - assert sqlrepr(instance, 'mysql') == "SELECT 'test'" + assert sqlrepr(instance, 'mysql') == "SELECT test" def test_insert(): # Single column, no keyword arguments. |