Skip to content

Commit 7be78ec

Browse files
authored
Fix indentation for test_json_normalize_meta_string_validation
1 parent c1fc462 commit 7be78ec

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/io/json/test_normalize.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -928,7 +928,7 @@ def test_series_non_zero_index(self):
928928
)
929929
tm.assert_frame_equal(result, expected)
930930

931-
def test_json_normalize_meta_string_validation(self):
931+
def test_json_normalize_meta_string_validation(self):
932932
# GH 63019
933933
data = [{"a": 1, 12: "meta_value", "nested": [{"b": 2}]}]
934934

@@ -944,4 +944,4 @@ def test_json_normalize_meta_string_validation(self):
944944
assert "a" in result1.columns
945945

946946
result2 = json_normalize(data, record_path=["nested"], meta=["a"])
947-
assert "a" in result2.columns
947+
assert "a" in result2.columns

0 commit comments

Comments
 (0)