[Zope-Checkins] CVS: ZODB3/ZODB/tests - testConfig.py:1.1.4.2

Fred L. Drake, Jr. fred@zope.com
Thu, 2 Jan 2003 18:13:39 -0500


Update of /cvs-repository/ZODB3/ZODB/tests
In directory cvs.zope.org:/tmp/cvs-serv1683/tests

Modified Files:
      Tag: zconfig-schema-devel-branch
	testConfig.py 
Log Message:
Remove cruftiness now that a bug in ZConfig has been fixed.

=== ZODB3/ZODB/tests/testConfig.py 1.1.4.1 => 1.1.4.2 ===
--- ZODB3/ZODB/tests/testConfig.py:1.1.4.1	Thu Jan  2 17:40:09 2003
+++ ZODB3/ZODB/tests/testConfig.py	Thu Jan  2 18:13:37 2003
@@ -32,18 +32,18 @@
         db.close()
 
     def test_map_config1(self):
-        self._test("<mappingstorage boo/>")
+        self._test("<mappingstorage/>")
 
     def test_map_config2(self):
         self._test(
-            """<mappingstorage boo/>
+            """<mappingstorage/>
             cache_size 1000
             """)
 
     def test_file_config1(self):
         path = tempfile.mktemp()
         self._test(
-            """<filestorage boo>
+            """<filestorage>
             path %s
             </filestorage>
             """ % path)
@@ -52,7 +52,7 @@
     def test_file_config2(self):
         path = tempfile.mktemp()
         cfg = \
-            """<filestorage boo>
+            """<filestorage>
             path %s
             create false
             read_only true