[Zope3-checkins] CVS: Zope3/src/zope/testing - functional.py:1.10

Marius Gedminas mgedmin@codeworks.lt
Tue, 24 Jun 2003 12:35:29 -0400


Update of /cvs-repository/Zope3/src/zope/testing
In directory cvs.zope.org:/tmp/cvs-serv32122/src/zope/testing

Modified Files:
	functional.py 
Log Message:
s/1/True/


=== Zope3/src/zope/testing/functional.py 1.9 => 1.10 ===
--- Zope3/src/zope/testing/functional.py:1.9	Mon Jun  9 12:39:16 2003
+++ Zope3/src/zope/testing/functional.py	Tue Jun 24 12:35:28 2003
@@ -329,7 +329,7 @@
         self.assertEquals(response.getStatus(), 200)
 
     def testNotExisting(self):
-        response = self.publish('/nosuchthing', handle_errors=1)
+        response = self.publish('/nosuchthing', handle_errors=True)
         self.assertEquals(response.getStatus(), 404)
 
     def testLinks(self):