[Zope3-checkins] CVS: Zope3/src/zope/server/http/tests - test_httpdate.py:1.4
Steve Alexander
steve@cat-box.net
Mon, 24 Mar 2003 09:59:46 -0500
Update of /cvs-repository/Zope3/src/zope/server/http/tests
In directory cvs.zope.org:/tmp/cvs-serv20654/src/zope/server/http/tests
Modified Files:
test_httpdate.py
Log Message:
this time properly indented
=== Zope3/src/zope/server/http/tests/test_httpdate.py 1.3 => 1.4 ===
--- Zope3/src/zope/server/http/tests/test_httpdate.py:1.3 Mon Mar 24 09:58:32 2003
+++ Zope3/src/zope/server/http/tests/test_httpdate.py Mon Mar 24 09:59:45 2003
@@ -23,9 +23,9 @@
# test roundtrip conversion.
def testDateRoundTrip(self):
- from time import time
- t = int(time())
- self.assertEquals(t, parse_http_date(build_http_date(t)))
+ from time import time
+ t = int(time())
+ self.assertEquals(t, parse_http_date(build_http_date(t)))
def test_suite():