Skip to content

Commit

Permalink
Fix csv_cols test
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicoretti committed Jul 9, 2024
1 parent 0e7cd5f commit 6a8b50f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration/export_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def export_cb(pipe, dst):

@pytest.mark.etl
def test_export_csv_cols(connection, table, data, export_file, expected_csv):
params = {"csv_cols": ["1..2", "2 foo_LASTNAME"]}
params = {"csv_cols": ["1..2"]}
connection.export_to_file(export_file, table, export_params=params)

expected = expected_csv(table, data, **params)
Expand Down

0 comments on commit 6a8b50f

Please sign in to comment.