diff options
author | Eric Eastwood <eric.eastwood@beta.gouv.fr> | 2024-07-25 16:51:14 -0500 |
---|---|---|
committer | Eric Eastwood <eric.eastwood@beta.gouv.fr> | 2024-07-25 16:51:14 -0500 |
commit | b5b273190cc6b158abb3ca7785b8c96d3d1daac3 (patch) | |
tree | 3d6fa0a9d895cba26acab10d4af97b5760c05f33 | |
parent | Some clean-up (diff) | |
download | synapse-b5b273190cc6b158abb3ca7785b8c96d3d1daac3.tar.xz |
Fix nested quote syntax
-rw-r--r-- | tests/rest/client/test_sync.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rest/client/test_sync.py b/tests/rest/client/test_sync.py index 33b4edf49b..7ef254f7f8 100644 --- a/tests/rest/client/test_sync.py +++ b/tests/rest/client/test_sync.py @@ -4480,7 +4480,7 @@ class SlidingSyncTestCase(SlidingSyncBase): # Read last event channel = self.make_request( "POST", - f"/rooms/{room_id}/receipt/{ReceiptTypes.READ}/{event_response["event_id"]}", + f"/rooms/{room_id}/receipt/{ReceiptTypes.READ}/{event_response['event_id']}", {}, access_token=user1_tok, ) |