Skip to content

Commit 8a720d2

Browse files
committed
Updated set_option test
1 parent 5e2146b commit 8a720d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/config/test_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ def test_set_option_dict(self):
205205
assert cf.get_option("b.b") is None
206206

207207
options_dict = {"a": "2", "b.c": None, "b.b": 10.0}
208-
cf.set_option(**options_dict)
208+
cf.set_option(options_dict)
209209

210210
assert cf.get_option("a") == "2"
211211
assert cf.get_option("b.c") is None

0 commit comments

Comments
 (0)