Skip to content

Commit e6f7969

Browse files
author
Albert Villanova del Moral
committed
Tests to be fixed
1 parent db978c7 commit e6f7969

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pandas/tests/io/json/test_pandas.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -1204,9 +1204,10 @@ def test_data_frame_size_after_to_json(self):
12041204

12051205
@pytest.mark.parametrize('index', [None, [1, 2], [1., 2.], ['a', 'b'],
12061206
['1', '2'], ['1.', '2.']])
1207-
@pytest.mark.parametrize('columns', [['a', 'b'], ['1', '2'], ['1.', '2.']])
1207+
@pytest.mark.parametrize('columns', [None, [1, 2], [1., 2.], ['a', 'b'],
1208+
['1', '2'], ['1.', '2.']])
12081209
def test_from_json_to_json_table_index_and_columns(self, index, columns):
1209-
# GH25433 GH25435
1210+
# GH19129 GH25433 GH25435
12101211
expected = DataFrame([[1, 2], [3, 4]], index=index, columns=columns)
12111212
dfjson = expected.to_json(orient='table')
12121213
result = pd.read_json(dfjson, orient='table')

0 commit comments

Comments
 (0)