diff options
author | Erik Johnston <erik@matrix.org> | 2019-10-10 15:37:53 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2019-10-10 15:37:53 +0100 |
commit | bc244627ac759bbd4691a2a20ac16383b4c2348c (patch) | |
tree | 810580232ad1fbb8943dbb37870978d44b62ddbe /tests | |
parent | Fix store_url_cache using bytes (diff) | |
download | synapse-bc244627ac759bbd4691a2a20ac16383b4c2348c.tar.xz |
Fix postgres unit tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/storage/test_event_federation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/storage/test_event_federation.py b/tests/storage/test_event_federation.py index b58386994e..2fe50377f8 100644 --- a/tests/storage/test_event_federation.py +++ b/tests/storage/test_event_federation.py @@ -57,7 +57,7 @@ class EventFederationWorkerStoreTestCase(tests.unittest.TestCase): "(event_id, algorithm, hash) " "VALUES (?, 'sha256', ?)" ), - (event_id, b"ffff"), + (event_id, bytearray(b"ffff")), ) for i in range(0, 11): |