We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81c01b2 commit 58a59edCopy full SHA for 58a59ed
lib/matplotlib/tests/test_preprocess_data.py
@@ -85,7 +85,7 @@ def test_function_call_with_dict_input(func):
85
@pytest.mark.parametrize('func', all_funcs, ids=all_func_ids)
86
def test_function_call_with_dict_data(func):
87
"""Test with dict data -> label comes from the value of 'x' parameter."""
88
- data = {'a': [1, 2], 'b': [8, 9], "w": "NOT"}
+ data = {"a": [1, 2], "b": [8, 9], "w": "NOT"}
89
assert (func(None, "a", "b", data=data) ==
90
"x: [1, 2], y: [8, 9], ls: x, w: xyz, label: b")
91
assert (func(None, x="a", y="b", data=data) ==
0 commit comments