Skip to content

Commit

Permalink
- backported r116951 from trunk
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown committed Sep 26, 2010
1 parent 6e6ff68 commit 01d1b9b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions doc/CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ http://docs.zope.org/zope2/releases/.
Bugs Fixed
++++++++++

- Fixed unit test that failed on fast Windows machines.

- LP #642728: Fixed TypeError on nested multi part messages in MailHost.

Features Added
Expand Down
3 changes: 3 additions & 0 deletions src/OFS/tests/testHistory.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

import os
import shutil
import time
import transaction
import tempfile
import ZODB
Expand Down Expand Up @@ -35,10 +36,12 @@ def setUp(self):
t.description = None
t.note('Change 1')
t.commit()
time.sleep(0.02) # wait at least one Windows clock tick
ps.write('return 2')
t = transaction.get()
t.note('Change 2')
t.commit()
time.sleep(0.02) # wait at least one Windows clock tick
ps.write('return 3')
t = transaction.get()
t.note('Change 3')
Expand Down

0 comments on commit 01d1b9b

Please sign in to comment.