summary refs log tree commit diff
path: root/tests/events
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2018-10-24 11:23:35 +0100
committerGitHub <noreply@github.com>2018-10-24 11:23:35 +0100
commit7328039117854d1c38ae41794a9e7efb2d23c732 (patch)
treeb022d21ff97fe3b99319c433a76993d4584cdf99 /tests/events
parentMerge pull request #4040 from matrix-org/erikj/states_res_v2_rebase (diff)
parentFix a number of flake8 errors (diff)
downloadsynapse-7328039117854d1c38ae41794a9e7efb2d23c732.tar.xz
Merge pull request #4082 from matrix-org/rav/fix_pep8
Fix a number of flake8 errors
Diffstat (limited to 'tests/events')
-rw-r--r--tests/events/test_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/events/test_utils.py b/tests/events/test_utils.py
index ff217ca8b9..d0cc492deb 100644
--- a/tests/events/test_utils.py
+++ b/tests/events/test_utils.py
@@ -156,7 +156,7 @@ class SerializeEventTestCase(unittest.TestCase):
                     room_id="!foo:bar",
                     content={"key.with.dots": {}},
                 ),
-                ["content.key\.with\.dots"],
+                [r"content.key\.with\.dots"],
             ),
             {"content": {"key.with.dots": {}}},
         )
@@ -172,7 +172,7 @@ class SerializeEventTestCase(unittest.TestCase):
                         "nested.dot.key": {"leaf.key": 42, "not_me_either": 1},
                     },
                 ),
-                ["content.nested\.dot\.key.leaf\.key"],
+                [r"content.nested\.dot\.key.leaf\.key"],
             ),
             {"content": {"nested.dot.key": {"leaf.key": 42}}},
         )