Skip to content

Commit d8c379f

Browse files
committed
mv to single line
1 parent ea6a532 commit d8c379f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

plotly/tests/test_optional/test_utils/test_utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ def test_figure_json_encoding():
4040

4141
js1 = json.dumps(s1, cls=utils._plotlyJSONEncoder, sort_keys=True)
4242
js2 = json.dumps(s2, cls=utils._plotlyJSONEncoder, sort_keys=True)
43-
assert(js1 == '{"y": [1, 2, 3], "x": [1, 2, 3], "z": '
44-
'[1, "A", "2014-01-05"], "type": "scatter3d"}')
43+
assert(js1 == '{"y": [1, 2, 3], "x": [1, 2, 3], "z": [1, "A", "2014-01-05"], "type": "scatter3d"}')
4544
assert(js2 == '{"x": [1, 2, 3], "type": "scatter"}')
4645
json.dumps(data, cls=utils._plotlyJSONEncoder, sort_keys=True)
4746
json.dumps(figure, cls=utils._plotlyJSONEncoder, sort_keys=True)

0 commit comments

Comments
 (0)