[Zope3-checkins] CVS: ZODB3/ZConfig/tests - test_datatypes.py:1.1.2.9
Barry Warsaw
barry@wooz.org
Fri, 3 Jan 2003 14:01:31 -0500
Update of /cvs-repository/ZODB3/ZConfig/tests
In directory cvs.zope.org:/tmp/cvs-serv27809
Modified Files:
Tag: zconfig-schema-devel-branch
test_datatypes.py
Log Message:
Add some `L's for Python 2.1 compatibility.
=== ZODB3/ZConfig/tests/test_datatypes.py 1.1.2.8 => 1.1.2.9 ===
--- ZODB3/ZConfig/tests/test_datatypes.py:1.1.2.8 Fri Jan 3 13:59:03 2003
+++ ZODB3/ZConfig/tests/test_datatypes.py Fri Jan 3 14:01:28 2003
@@ -249,12 +249,12 @@
eq(convert('128'), 128)
eq(convert('128KB'), 128*1024)
eq(convert('128MB'), 128*1024*1024)
- eq(convert('128GB'), 128*1024*1024*1024)
+ eq(convert('128GB'), 128*1024*1024*1024L)
raises(ValueError, convert, '128TB')
eq(convert('128'), 128)
eq(convert('128kb'), 128*1024)
eq(convert('128mb'), 128*1024*1024)
- eq(convert('128gb'), 128*1024*1024*1024)
+ eq(convert('128gb'), 128*1024*1024*1024L)
raises(ValueError, convert, '128tb')
def test_time_interval(self):