Skip to content

Commit 58ea650

Browse files
committed
update
1 parent d494d6b commit 58ea650

1 file changed

Lines changed: 5 additions & 7 deletions

File tree

parquet-cli/src/test/java/org/apache/parquet/cli/commands/TestEncryptionInfoCommand.java

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@
2222
import static org.junit.Assert.assertTrue;
2323
import static org.junit.Assert.fail;
2424

25+
import java.io.ByteArrayOutputStream;
2526
import java.io.File;
2627
import java.io.IOException;
28+
import java.io.PrintStream;
2729
import java.nio.charset.StandardCharsets;
2830
import java.util.HashMap;
2931
import java.util.Map;
@@ -51,11 +53,8 @@
5153
import org.apache.parquet.schema.Types;
5254
import org.junit.Before;
5355
import org.junit.Test;
54-
import org.slf4j.LoggerFactory;
55-
56-
import java.io.ByteArrayOutputStream;
57-
import java.io.PrintStream;
5856
import org.slf4j.Logger;
57+
import org.slf4j.LoggerFactory;
5958

6059
public class TestEncryptionInfoCommand extends ParquetFileTest {
6160

@@ -270,9 +269,8 @@ public void testFooterEncryptedFileWithKeys() throws IOException {
270269
FileDecryptionProperties decryptionProps = createDecryptionProperties();
271270
Configuration verifyConf = new Configuration();
272271

273-
ParquetReadOptions readOptions = ParquetReadOptions.builder()
274-
.withDecryption(decryptionProps)
275-
.build();
272+
ParquetReadOptions readOptions =
273+
ParquetReadOptions.builder().withDecryption(decryptionProps).build();
276274
InputFile inputFile = HadoopInputFile.fromPath(new Path(footerEncryptedFile.getPath()), verifyConf);
277275

278276
try {

0 commit comments

Comments
 (0)