From 85d7872c38cc4d502631487acc430bb519e1e35b Mon Sep 17 00:00:00 2001
From: Jim Fulton <jim@zope.com>
Date: Sun, 24 Jun 2012 15:11:35 -0400
Subject: [PATCH] another test passing w 3.2

---
 src/zc/buildout/testing_bugfix.txt | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/zc/buildout/testing_bugfix.txt b/src/zc/buildout/testing_bugfix.txt
index 3bd13ee..83f065f 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 ...>]
-- 
2.30.9