Skip to content

Commit 24a9c14

Browse files
author
Kristian Holsheimer
committed
Fixed tests (tuples are reserved for multi-level lookups)
1 parent ad36862 commit 24a9c14

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
@@ -2153,7 +2153,7 @@ def test_n(self, df_strings, nselect_method, n, order):
21532153
tm.assert_frame_equal(result, expected)
21542154

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

0 commit comments

Comments
 (0)