Skip to content

Commit

Permalink
Ensure we're backwards compatible for 2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
dpnova committed Aug 10, 2014
1 parent cf10408 commit a7848cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cyclone/tests/test_httpserver.py
Expand Up @@ -362,10 +362,10 @@ def test_full_url(self):

def test_request_time_empty_finish(self):
self.req._finish_time = None
self.assertLess(self.req.request_time(), 0.01)
self.assertTrue(self.req.request_time() < 0.01)

def test_request_time(self):
self.assertLess(self.req.request_time(), 0.01)
self.assertTrue(self.req.request_time() <0.01)

def test_repr(self):
"""
Expand Down

0 comments on commit a7848cc

Please sign in to comment.