[Zope3-checkins]
CVS: Zope3/src/zope/app/applicationcontrol/browser/tests
- test_runtimeinfoview.py:1.3
Dmitry Vasiliev
dima at hlabs.spb.ru
Tue Mar 23 08:35:40 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/applicationcontrol/browser/tests
In directory cvs.zope.org:/tmp/cvs-serv5236/browser/tests
Modified Files:
test_runtimeinfoview.py
Log Message:
RuntimeInfo changes:
- new method: getPreferredEncoding()
- getSystemPlatform(), getPythonVersion() now returns an unicode strings encoded
with the preferred system encoding
=== Zope3/src/zope/app/applicationcontrol/browser/tests/test_runtimeinfoview.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/applicationcontrol/browser/tests/test_runtimeinfoview.py:1.2 Sat Mar 13 10:21:07 2004
+++ Zope3/src/zope/app/applicationcontrol/browser/tests/test_runtimeinfoview.py Tue Mar 23 08:35:09 2004
@@ -49,7 +49,7 @@
test_keys.sort()
self.failUnless(assert_keys == test_keys)
- self.failUnless(test_format["ZopeVersion"] != "N/A")
+ self.failUnless(test_format["ZopeVersion"] != "n/a")
def test_RuntimeInfoFailureView(self):
test_runtimeinfoview = self._TestView__newView(applicationController)
@@ -65,7 +65,7 @@
test_keys.sort()
self.failUnless(assert_keys == test_keys)
- self.failUnless(test_format["ZopeVersion"] == "N/A")
+ self.failUnless(test_format["ZopeVersion"] == "n/a")
def test_suite():
More information about the Zope3-Checkins
mailing list