[Checkins] SVN: zc.extjs/branches/dev/src/zc/extjs/ Updated to work with newest (and older) zope.testbrowser.

Jim Fulton jim at zope.com
Mon Mar 31 11:11:06 EDT 2008


Log message for revision 85035:
  Updated to work with newest (and older) zope.testbrowser.
  

Changed:
  U   zc.extjs/branches/dev/src/zc/extjs/application.txt
  U   zc.extjs/branches/dev/src/zc/extjs/session.txt

-=-
Modified: zc.extjs/branches/dev/src/zc/extjs/application.txt
===================================================================
--- zc.extjs/branches/dev/src/zc/extjs/application.txt	2008-03-31 15:10:58 UTC (rev 85034)
+++ zc.extjs/branches/dev/src/zc/extjs/application.txt	2008-03-31 15:11:02 UTC (rev 85035)
@@ -91,7 +91,7 @@
     >>> browser.open('http://localhost/')
     Traceback (most recent call last):
     ...
-    httperror_seek_wrapper: HTTP Error 401: Unauthorized
+    HTTPError: HTTP Error 401: Unauthorized
 
 Because our view was registered to require zope.View, the request was
 unauthorized.  Let's login. In the demo setup, we login by just
@@ -279,7 +279,7 @@
     >>> print_form(browser, '/calculator.html/do_add', value=1)
     Traceback (most recent call last):
     ...
-    httperror_seek_wrapper: HTTP Error 404: Not Found
+    HTTPError: HTTP Error 404: Not Found
 
 
 "Library" applications

Modified: zc.extjs/branches/dev/src/zc/extjs/session.txt
===================================================================
--- zc.extjs/branches/dev/src/zc/extjs/session.txt	2008-03-31 15:10:58 UTC (rev 85034)
+++ zc.extjs/branches/dev/src/zc/extjs/session.txt	2008-03-31 15:11:02 UTC (rev 85035)
@@ -26,7 +26,7 @@
     >>> browser.open('http://localhost/@@index.html/about')
     Traceback (most recent call last):
     ...
-    httperror_seek_wrapper: HTTP Error 401: Unauthorized
+    HTTPError: HTTP Error 401: Unauthorized
 
 We get an unauthorized error, rather than getting redirected because
 we're using basic authentication in the test setup.  Had we been using



More information about the Checkins mailing list