Skip to content

Commit a8cc86d

Browse files
committed
fixing bad formatting
1 parent 09ac7f1 commit a8cc86d

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

pandas/tests/io/json/test_readlines.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -362,15 +362,9 @@ def to_json_append_output_inconsistent_columns():
362362
df1 = DataFrame({"col1": [1, 2], "col2": ["a", "b"]})
363363
df3 = DataFrame({"col2": ["e", "f"], "col3": ["!", "#"]})
364364

365-
# Test 2: df1, df2, df3, df4 (in that order)
366365
expected = DataFrame(
367366
{
368-
"col1": [
369-
1,
370-
2,
371-
None,
372-
None,
373-
],
367+
"col1": [1, 2, None, None],
374368
"col2": ["a", "b", "e", "f"],
375369
"col3": [None, None, "!", "#"],
376370
}

0 commit comments

Comments
 (0)