Skip to content

Commit

Permalink
Fix blob_layout.txt failures on Python 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Feb 20, 2013
1 parent 57e8924 commit a865757
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ZODB/tests/testblob.py
Expand Up @@ -770,11 +770,12 @@ def test_suite():
optionflags=doctest.ELLIPSIS|doctest.NORMALIZE_WHITESPACE,
setUp=setUp,
tearDown=zope.testing.setupstack.tearDown,
checker = ZODB.tests.util.checker + \
checker=ZODB.tests.util.checker +
zope.testing.renormalizing.RENormalizing([
(re.compile(r'\%(sep)s\%(sep)s' % dict(sep=os.path.sep)), '/'),
(re.compile(r'\%(sep)s' % dict(sep=os.path.sep)), '/'),
(re.compile(r'\S+/((old|bushy|lawn)/\S+/foo[23456]?)'), r'\1'),
(re.compile(r"u('[^']*')"), r"\1"),
]),
))
suite.addTest(storage_reusable_suite(
Expand Down

0 comments on commit a865757

Please sign in to comment.