Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 58a59ed

Browse files
committed
reverted double quotes on string
1 parent 81c01b2 commit 58a59ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/tests/test_preprocess_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def test_function_call_with_dict_input(func):
8585
@pytest.mark.parametrize('func', all_funcs, ids=all_func_ids)
8686
def test_function_call_with_dict_data(func):
8787
"""Test with dict data -> label comes from the value of 'x' parameter."""
88-
data = {'a': [1, 2], 'b': [8, 9], "w": "NOT"}
88+
data = {"a": [1, 2], "b": [8, 9], "w": "NOT"}
8989
assert (func(None, "a", "b", data=data) ==
9090
"x: [1, 2], y: [8, 9], ls: x, w: xyz, label: b")
9191
assert (func(None, x="a", y="b", data=data) ==

0 commit comments

Comments
 (0)