Mercurial > p > roundup > code
diff test/db_test_base.py @ 2255:4990fd3d57a7
fix mysql testing date granularity thingy
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 06 May 2004 01:03:01 +0000 |
| parents | 7d5398391610 |
| children | 4fd7a1805544 fa2f7ba34399 |
line wrap: on
line diff
--- a/test/db_test_base.py Wed May 05 11:22:01 2004 +0000 +++ b/test/db_test_base.py Thu May 06 01:03:01 2004 +0000 @@ -15,7 +15,7 @@ # BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE, # SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. # -# $Id: db_test_base.py,v 1.26 2004-05-04 00:16:07 richard Exp $ +# $Id: db_test_base.py,v 1.27 2004-05-06 01:03:01 richard Exp $ import unittest, os, shutil, errno, imp, sys, time, pprint @@ -614,6 +614,7 @@ def testPack(self): id = self.db.issue.create(title="spam", status='1') self.db.commit() + time.sleep(1) self.db.issue.set(id, status='2') self.db.commit()
