Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZEO
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
ZEO
Commits
ec66d629
Commit
ec66d629
authored
Apr 13, 2011
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added renomalizing to deal w spurious error due to rounding
difference.
parent
70f34693
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
src/ZEO/tests/test_cache.py
src/ZEO/tests/test_cache.py
+5
-0
No files found.
src/ZEO/tests/test_cache.py
View file @
ec66d629
...
...
@@ -16,6 +16,7 @@
from
ZODB.utils
import
p64
,
repr_to_oid
import
doctest
import
os
import
re
import
string
import
struct
import
sys
...
...
@@ -24,6 +25,7 @@ import unittest
import
ZEO.cache
import
ZODB.tests.util
import
zope.testing.setupstack
import
zope.testing.renormalizing
import
ZEO.cache
from
ZODB.utils
import
p64
,
u64
,
z64
...
...
@@ -1132,6 +1134,9 @@ def test_suite():
doctest
.
DocTestSuite
(
setUp
=
zope
.
testing
.
setupstack
.
setUpDirectory
,
tearDown
=
zope
.
testing
.
setupstack
.
tearDown
,
checker
=
zope
.
testing
.
renormalizing
.
RENormalizing
([
(
re
.
compile
(
r'31\
.
3%'
),
'31.2%'
),
]),
)
)
return
suite
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment