Skip to content

Commit

Permalink
fix python test
Browse files Browse the repository at this point in the history
Signed-off-by: Luka Peschke <[email protected]>
  • Loading branch information
lukapeschke committed Feb 27, 2024
1 parent 248acdd commit 8dba9fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/tests/test_column_selection.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,11 +227,11 @@ def test_single_sheet_with_unnamed_columns_and_str_range(
single_sheet_with_unnamed_columns_expected: dict[str, list[Any]],
) -> None:
use_columns_str = "A,C:E"
use_columns_idx = [0, 2, 3]
use_columns_idx = [0, 2, 3, 4]
expected = {
k: v
for k, v in single_sheet_with_unnamed_columns_expected.items()
if k in ["col1", "col3", "__UNNAMED__3"]
if k in ["col1", "col3", "__UNNAMED__3", "col5"]
}
sheet = excel_reader_single_sheet_with_unnamed_columns.load_sheet(
"With unnamed columns", use_columns=use_columns_str
Expand Down

0 comments on commit 8dba9fd

Please sign in to comment.