Skip to content

Commit b53e619

Browse files
committed
line length
1 parent 9108e29 commit b53e619

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ class TestMeta(object):
124124
def test_meta(self):
125125
c = Consul()
126126
for r in _should_support_meta(c):
127-
assert sorted(json.loads(r(meta={'env': 'prod', 'net': 1}).data)['meta']) == \
128-
sorted({'env': 'prod', 'net': 1})
127+
d = json.loads(r(meta={'env': 'prod', 'net': 1}).data)
128+
assert sorted(d['meta']) == sorted({'env': 'prod', 'net': 1})
129129

130130

131131
class TestCB(object):

0 commit comments

Comments
 (0)