Skip to content

Commit

Permalink
Fix for crashing python parquet CI tests (#4494)
Browse files Browse the repository at this point in the history
  • Loading branch information
malhotrashivam committed Sep 14, 2023
1 parent 10e5eb4 commit 2d9efa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py/server/tests/test_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def round_trip_with_compression(self, compression_codec_name, dh_table, vector_c

# Write the pandas dataframe back to parquet (via pyarraow) and read it back using deephaven.parquet to compare
dataframe.to_parquet('data_from_pandas.parquet',
compression=None if compression_codec_name is 'UNCOMPRESSED' else compression_codec_name)
compression=None if compression_codec_name == 'UNCOMPRESSED' else compression_codec_name)
result_table = read('data_from_pandas.parquet')
self.assert_table_equals(dh_table, result_table)

Expand Down

0 comments on commit 2d9efa7

Please sign in to comment.