Skip to content
Snippets Groups Projects
Commit 8b34f71b authored by Erik Johnston's avatar Erik Johnston
Browse files

Fix unit tests

parent fbaf868f
No related branches found
No related tags found
No related merge requests found
...@@ -294,6 +294,10 @@ class MockClock(object): ...@@ -294,6 +294,10 @@ class MockClock(object):
def advance_time_msec(self, ms): def advance_time_msec(self, ms):
self.advance_time(ms / 1000.) self.advance_time(ms / 1000.)
def time_bound_deferred(self, d, *args, **kwargs):
# We don't bother timing things out for now.
return d
class SQLiteMemoryDbPool(ConnectionPool, object): class SQLiteMemoryDbPool(ConnectionPool, object):
def __init__(self): def __init__(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment