[Zope3-checkins] CVS: Zope3/src/zope/server/http/tests - test_httpdate.py:1.3

Steve Alexander steve@cat-box.net
Mon, 24 Mar 2003 09:58:33 -0500


Update of /cvs-repository/Zope3/src/zope/server/http/tests
In directory cvs.zope.org:/tmp/cvs-serv20414/src/zope/server/http/tests

Modified Files:
	test_httpdate.py 
Log Message:
Removed tabs, changed them into spaces.


=== Zope3/src/zope/server/http/tests/test_httpdate.py 1.2 => 1.3 ===
--- Zope3/src/zope/server/http/tests/test_httpdate.py:1.2	Thu Mar 13 13:49:18 2003
+++ Zope3/src/zope/server/http/tests/test_httpdate.py	Mon Mar 24 09:58:32 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():