diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-11-03 09:11:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-03 13:11:16 +0000 |
commit | 2735b3e6f203813e72ca1845225dedd7d791dbb7 (patch) | |
tree | bba71d26c2aa93836ae5eb23779b1f3aecf6c6c6 /tests | |
parent | Add twine and towncrier as dev dependencies (#11233) (diff) | |
download | synapse-2735b3e6f203813e72ca1845225dedd7d791dbb7.tar.xz |
Remove a debug statement from tests. (#11239)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/module_api/test_api.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/module_api/test_api.py b/tests/module_api/test_api.py index 525b83141b..d16cd141a7 100644 --- a/tests/module_api/test_api.py +++ b/tests/module_api/test_api.py @@ -116,7 +116,6 @@ class ModuleApiTestCase(HomeserverTestCase): # Insert a second ip, agent at a later date. We should be able to retrieve it. last_seen_2 = last_seen_1 + 10000 - print("%s => %s" % (last_seen_1, last_seen_2)) self.get_success( self.store.insert_client_ip( user_id, "access_token", "ip_2", "user_agent_2", "device_2", last_seen_2 |