Remove test_helpers.DummySession

This commit is contained in:
Steve Howell
2016-07-13 16:48:15 -07:00
committed by Tim Abbott
parent 616e49e2e8
commit 701bb7a59f

View File

@@ -189,9 +189,6 @@ class DummyHandler(object):
# type: (Callable) -> None
allocate_handler_id(self)
class DummySession(object):
session_key = "0"
class POSTRequestMock(object):
method = "POST"
@@ -200,7 +197,6 @@ class POSTRequestMock(object):
self.REQUEST = self.POST = post_data
self.user = user_profile
self._tornado_handler = DummyHandler()
self.session = DummySession()
self._log_data = {} # type: Dict[str, Any]
self.META = {'PATH_INFO': 'test'}