[Zope3-checkins] CVS: Zope3/src/zope/app/services/tests - test_useconfiguration.py:1.5

Guido van Rossum guido@python.org
Thu, 12 Jun 2003 15:25:51 -0400


Update of /cvs-repository/Zope3/src/zope/app/services/tests
In directory cvs.zope.org:/tmp/cvs-serv16603

Modified Files:
	test_useconfiguration.py 
Log Message:
Add two missing lines.


=== Zope3/src/zope/app/services/tests/test_useconfiguration.py 1.4 => 1.5 ===
--- Zope3/src/zope/app/services/tests/test_useconfiguration.py:1.4	Thu Jun 12 14:58:50 2003
+++ Zope3/src/zope/app/services/tests/test_useconfiguration.py	Thu Jun 12 15:25:50 2003
@@ -48,6 +48,8 @@
         locs.sort()
         self.assertEqual(locs, ['/a/b', '/c/e'])
         obj.removeUsage('/c/d')
+        locs = list(obj.usages())
+        locs.sort()
         self.assertEqual(locs, ['/a/b', '/c/e'])
 
     def testRelativeAbsolute(self):