Skip to content

Commit b701695

Browse files
committed
allow deprecated tests
1 parent ff9ada0 commit b701695

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

parquet/tests/encryption/encryption_async.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -775,6 +775,7 @@ async fn test_multi_threaded_encrypted_writing() {
775775
// LOW-LEVEL API: Use low level API to write into a file using multiple threads
776776

777777
// Get column writers
778+
#[allow(deprecated)]
778779
let col_writers = writer.get_column_writers().unwrap();
779780
let num_columns = col_writers.len();
780781

@@ -797,7 +798,8 @@ async fn test_multi_threaded_encrypted_writing() {
797798
}
798799

799800
// Append the finalized row group to the SerializedFileWriter
800-
assert!(writer.append_row_group(finalized_rg).is_ok());
801+
#[allow(deprecated)]
802+
writer.append_row_group(finalized_rg).unwrap();
801803

802804
// HIGH-LEVEL API: Write RecordBatches into the file using ArrowWriter
803805

0 commit comments

Comments
 (0)