Skip to content

Commit 73e266d

Browse files
committed
chore: fix name in test function
1 parent 82838db commit 73e266d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/tests/io/json/test_normalize.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -934,6 +934,8 @@ def test_json_normalize_non_str_keys(self):
934934
# keys correctly when record_path is used
935935

936936
data = [{"a": 1, 12: "meta_value", "nested": [{"b": 2}]}]
937+
937938
result = json_normalize(data, record_path=["nested"], meta=[12])
938939
expected = DataFrame({"b": [2], "12": ["meta_value"]})
940+
939941
tm.assert_frame_equal(result, expected)

0 commit comments

Comments
 (0)