summary refs log tree commit diff
path: root/tests/util
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-02-09 14:57:43 +0000
committerErik Johnston <erik@matrix.org>2016-02-09 14:57:43 +0000
commite664e9737ca8ff04043f747a9375ff50440352c2 (patch)
tree8b5ce4dddd36859ace398188f1bd1e2f73c4bdc1 /tests/util
parentDon't bother copying records on parent context (diff)
downloadsynapse-e664e9737ca8ff04043f747a9375ff50440352c2.tar.xz
Fix test
Diffstat (limited to 'tests/util')
-rw-r--r--tests/util/test_log_context.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/tests/util/test_log_context.py b/tests/util/test_log_context.py
index efa0f28bad..65a330a0e9 100644
--- a/tests/util/test_log_context.py
+++ b/tests/util/test_log_context.py
@@ -5,6 +5,7 @@ from .. import unittest
 from synapse.util.async import sleep
 from synapse.util.logcontext import LoggingContext
 
+
 class LoggingContextTestCase(unittest.TestCase):
 
     def _check_test_key(self, value):
@@ -17,15 +18,6 @@ class LoggingContextTestCase(unittest.TestCase):
             context_one.test_key = "test"
             self._check_test_key("test")
 
-    def test_chaining(self):
-        with LoggingContext() as context_one:
-            context_one.test_key = "one"
-            with LoggingContext() as context_two:
-                self._check_test_key("one")
-                context_two.test_key = "two"
-                self._check_test_key("two")
-            self._check_test_key("one")
-
     @defer.inlineCallbacks
     def test_sleep(self):
         @defer.inlineCallbacks