Author: phd
Date: 2010-01-08 04:37:58 -0700 (Fri, 08 Jan 2010)
New Revision: 4075
Modified:
SQLObject/branches/0.11/sqlobject/tests/test_comparison.py
Log:
Removed lt/gt/le/ge comparison - they are undefined.
Modified: SQLObject/branches/0.11/sqlobject/tests/test_comparison.py
===================================================================
--- SQLObject/branches/0.11/sqlobject/tests/test_comparison.py 2010-01-08 11:20:08 UTC (rev 4074)
+++ SQLObject/branches/0.11/sqlobject/tests/test_comparison.py 2010-01-08 11:37:58 UTC (rev 4075)
@@ -20,5 +20,3 @@
assert t1 == t3
assert t2 == t4
assert t1 <> t2
- assert t1 < t2
- assert not (t1 >= t2)
|