Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/units/node/node.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/units/node/node.py')
-rwxr-xr-xtests/units/node/node.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/units/node/node.py b/tests/units/node/node.py
index e163912..3506495 100755
--- a/tests/units/node/node.py
+++ b/tests/units/node/node.py
@@ -159,7 +159,7 @@ class NodeTest(tests.Test):
def subscribe():
for event in cp.subscribe():
- events.append(json.loads(event[6:]))
+ events.append(event)
events = []
coroutine.spawn(subscribe)
coroutine.dispatch()
@@ -184,7 +184,7 @@ class NodeTest(tests.Test):
def subscribe():
for event in cp.subscribe():
- events.append(json.loads(event[6:]))
+ events.append(event)
events = []
coroutine.spawn(subscribe)
coroutine.dispatch()