Skip to content

Commit

Permalink
in -> not in
Browse files Browse the repository at this point in the history
  • Loading branch information
steinitzu committed Oct 16, 2023
1 parent 33ce792 commit b9f7aaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/load/pipeline/test_arrow_loading.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
@pytest.mark.parametrize("destination_config", destinations_configs(file_format="parquet", default_sql_configs=True, default_staging_configs=True, all_buckets_filesystem_configs=True), ids=lambda x: x.name)
@pytest.mark.parametrize("item_type", ["pandas", "table", "record_batch"])
def test_load_item(item_type: Literal["pandas", "table", "record_batch"], destination_config: DestinationTestConfiguration):
include_time = destination_config.destination in ("athena", "redshift") # athena/redshift can't load TIME columns from parquet
include_time = destination_config.destination not in ("athena", "redshift") # athena/redshift can't load TIME columns from parquet
item, records = arrow_table_all_data_types(item_type, include_json=False, include_time=include_time)

pipeline = destination_config.setup_pipeline("arrow_" + uniq_id())
Expand Down

0 comments on commit b9f7aaf

Please sign in to comment.