Skip to content

Commit 2f05ba4

Browse files
author
Kristian Holsheimer
committed
Fixed tests (tuples are reserved for multi-level lookups)
1 parent f487c09 commit 2f05ba4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/frame/test_analytics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2154,7 +2154,7 @@ def test_n(self, df_strings, nselect_method, n, order):
21542154
tm.assert_frame_equal(result, expected)
21552155

21562156
@pytest.mark.parametrize('columns', [
2157-
('group', 'category_string'), ('group', 'string')])
2157+
['group', 'category_string'], ['group', 'string']])
21582158
def test_n_error(self, df_main_dtypes, nselect_method, columns):
21592159
df = df_main_dtypes
21602160
col = columns[1]

0 commit comments

Comments
 (0)