diff --git a/src/zc/buildout/testing_bugfix.txt b/src/zc/buildout/testing_bugfix.txt index 3bd13ee070f22a2a553440b75a41333bb38d430b..83f065f2aaaeb10c6314aac9e0a237de808b73d2 100644 --- a/src/zc/buildout/testing_bugfix.txt +++ b/src/zc/buildout/testing_bugfix.txt @@ -15,7 +15,7 @@ The handers before calling set up are: >>> len(logging.getLogger().handlers) 1 >>> logging.getLogger().handlers # doctest: +ELLIPSIS - [<zope...testrunner.logsupport.NullHandler instance at ...>] + [<zope...testrunner.logsupport.NullHandler ... at ...>] After calling it, a ``logging.StreamHandler`` was added: @@ -27,8 +27,8 @@ After calling it, a ``logging.StreamHandler`` was added: >>> len(logging.getLogger().handlers) 2 >>> logging.getLogger().handlers # doctest: +ELLIPSIS +NORMALIZE_WHITESPACE - [<zope...testrunner.logsupport.NullHandler instance at ...>, - <logging.StreamHandler instance at ...>] + [<zope...testrunner.logsupport.NullHandler ... at ...>, + <logging.StreamHandler ... at ...>] But tear down removes the new logging handler: @@ -36,4 +36,4 @@ But tear down removes the new logging handler: >>> len(logging.getLogger().handlers) 1 >>> logging.getLogger().handlers # doctest: +ELLIPSIS - [<zope...testrunner.logsupport.NullHandler instance at ...>] + [<zope...testrunner.logsupport.NullHandler ... at ...>]