Skip to content

Commit

Permalink
Pass black pandas again
Browse files Browse the repository at this point in the history
  • Loading branch information
alexitkes committed Aug 6, 2019
1 parent 60c833c commit f737870
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pandas/tests/io/json/test_deprecated_kwargs.py
Expand Up @@ -34,5 +34,7 @@ def test_good_kwargs():
df = pd.DataFrame({"A": [2, 4, 6], "B": [3, 6, 9]}, index=[0, 1, 2])
with tm.assert_produces_warning(None):
assert_frame_equal(df, read_json(df.to_json(orient="split"), orient="split"))
assert_frame_equal(df, read_json(df.to_json(orient="columns"), orient="columns"))
assert_frame_equal(
df, read_json(df.to_json(orient="columns"), orient="columns")
)
assert_frame_equal(df, read_json(df.to_json(orient="index"), orient="index"))

0 comments on commit f737870

Please sign in to comment.