| Index: appengine/findit/common/findit_testcase.py
|
| diff --git a/appengine/findit/common/findit_testcase.py b/appengine/findit/common/findit_testcase.py
|
| index 74bd3685a11c732320babc8b0f19eeb3f653dafa..046e4eeb72e604470a750c1c4b1a580e7888ea73 100644
|
| --- a/appengine/findit/common/findit_testcase.py
|
| +++ b/appengine/findit/common/findit_testcase.py
|
| @@ -38,3 +38,7 @@ class FinditTestCase(testing.AppengineTestCase): # pragma: no cover.
|
| def MockUTCNow(self, mocked_utcnow):
|
| """Mocks utcnow with the given value for testing."""
|
| self.mock(time_util, 'GetUTCNow', lambda: mocked_utcnow)
|
| +
|
| + def MockUTCNowWithTimezone(self, mocked_utcnow):
|
| + """Mocks utcnow with the given value for testing."""
|
| + self.mock(time_util, 'GetUTCNowWithTimezone', lambda: mocked_utcnow)
|
|
|