[Zodb-checkins] CVS: ZODB3/ZEO/tests - testConnection.py:1.16.6.1
testZEO.py:1.72.8.1
Jeremy Hylton
jeremy at zope.com
Fri Jul 11 16:19:46 EDT 2003
Update of /cvs-repository/ZODB3/ZEO/tests
In directory cvs.zope.org:/tmp/cvs-serv15740
Modified Files:
Tag: zodb33-devel-branch
testConnection.py testZEO.py
Log Message:
Remove filterwarnings() calls.
Python 2.3 got a life and stopped warning about unsafe use of
mktemp(). And filterwarnings() cause the list of filters to grow
without bounds as the test ran.
=== ZODB3/ZEO/tests/testConnection.py 1.16 => 1.16.6.1 ===
--- ZODB3/ZEO/tests/testConnection.py:1.16 Fri Jun 13 18:27:33 2003
+++ ZODB3/ZEO/tests/testConnection.py Fri Jul 11 15:19:39 2003
@@ -124,10 +124,6 @@
def test_suite():
- # shutup warnings about mktemp
- import warnings
- warnings.filterwarnings("ignore", "mktemp")
-
suite = unittest.TestSuite()
for klass in test_classes:
sub = unittest.makeSuite(klass, 'check')
=== ZODB3/ZEO/tests/testZEO.py 1.72 => 1.72.8.1 ===
--- ZODB3/ZEO/tests/testZEO.py:1.72 Fri May 30 15:20:56 2003
+++ ZODB3/ZEO/tests/testZEO.py Fri Jul 11 15:19:39 2003
@@ -257,10 +257,6 @@
def test_suite():
- # shutup warnings about mktemp
- import warnings
- warnings.filterwarnings("ignore", "mktemp")
-
suite = unittest.TestSuite()
for klass in test_classes:
sub = unittest.makeSuite(klass, "check")
More information about the Zodb-checkins
mailing list