2 files changed, 4 insertions, 0 deletions
diff --git a/tests/rest/client/v1/test_presence.py b/tests/rest/client/v1/test_presence.py
index c0c52796ad..29c0038f06 100644
--- a/tests/rest/client/v1/test_presence.py
+++ b/tests/rest/client/v1/test_presence.py
@@ -271,6 +271,7 @@ class PresenceEventStreamTestCase(unittest.TestCase):
"call_later",
"cancel_call_later",
"time_msec",
+ "looping_call",
]),
)
diff --git a/tests/utils.py b/tests/utils.py
index a67530bd63..3b5c335911 100644
--- a/tests/utils.py
+++ b/tests/utils.py
@@ -197,6 +197,9 @@ class MockClock(object):
return t
+ def looping_call(self, function, interval):
+ pass
+
def cancel_call_later(self, timer):
if timer[2]:
raise Exception("Cannot cancel an expired timer")
|