remove usage of assertLess() which is only available on python 2.7+

This commit is contained in:
Pablo Hoffman 2011-09-26 12:21:52 -03:00
parent 431441cb52
commit 43b79afc9c
1 changed files with 1 additions and 1 deletions

View File

@ -221,4 +221,4 @@ class LifoDiskQueueTest(LifoMemoryQueueTest):
q = self.queue()
q.pop()
q.close()
self.assertLess(os.path.getsize(self.path), size)
assert os.path.getsize(self.path), size