This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-compress.git

commit 16db43b1e46a7db8acc07f52b7a21e9e3b434bf2
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu May 5 13:47:50 2022 -0400

    Format.
---
 .../sevenz/SevenZMethodConfigurationTest.java      | 23 +++++++---------------
 1 file changed, 7 insertions(+), 16 deletions(-)

diff --git 
a/src/test/java/org/apache/commons/compress/archivers/sevenz/SevenZMethodConfigurationTest.java
 
b/src/test/java/org/apache/commons/compress/archivers/sevenz/SevenZMethodConfigurationTest.java
index 9550418e..551b9a1e 100644
--- 
a/src/test/java/org/apache/commons/compress/archivers/sevenz/SevenZMethodConfigurationTest.java
+++ 
b/src/test/java/org/apache/commons/compress/archivers/sevenz/SevenZMethodConfigurationTest.java
@@ -27,46 +27,37 @@ public class SevenZMethodConfigurationTest {
 
     @Test
     public void shouldAllowNullOptions() {
-        Assert.assertNull(new SevenZMethodConfiguration(SevenZMethod.LZMA2, 
null)
-                          .getOptions());
+        Assert.assertNull(new SevenZMethodConfiguration(SevenZMethod.LZMA2, 
null).getOptions());
     }
 
     @Test
     public void shouldAllowLZMA2OptionsForLZMA() {
-        Assert.assertNotNull(new SevenZMethodConfiguration(SevenZMethod.LZMA,
-                                                           new LZMA2Options())
-                             .getOptions());
+        Assert.assertNotNull(new SevenZMethodConfiguration(SevenZMethod.LZMA, 
new LZMA2Options()).getOptions());
     }
 
     @Test
     public void shouldAllowNumberForLZMA() {
-        Assert.assertNotNull(new SevenZMethodConfiguration(SevenZMethod.LZMA, 
42)
-                             .getOptions());
+        Assert.assertNotNull(new SevenZMethodConfiguration(SevenZMethod.LZMA, 
42).getOptions());
     }
 
     @Test
     public void shouldAllowLZMA2OptionsForLZMA2() {
-        Assert.assertNotNull(new SevenZMethodConfiguration(SevenZMethod.LZMA2,
-                                                           new LZMA2Options())
-                             .getOptions());
+        Assert.assertNotNull(new SevenZMethodConfiguration(SevenZMethod.LZMA2, 
new LZMA2Options()).getOptions());
     }
 
     @Test
     public void shouldAllowNumberForLZMA2() {
-        Assert.assertNotNull(new SevenZMethodConfiguration(SevenZMethod.LZMA2, 
42)
-                             .getOptions());
+        Assert.assertNotNull(new SevenZMethodConfiguration(SevenZMethod.LZMA2, 
42).getOptions());
     }
 
     @Test
     public void shouldAllowNumberForBzip2() {
-        Assert.assertNotNull(new SevenZMethodConfiguration(SevenZMethod.BZIP2, 
42)
-                             .getOptions());
+        Assert.assertNotNull(new SevenZMethodConfiguration(SevenZMethod.BZIP2, 
42).getOptions());
     }
 
     @Test
     public void shouldAllowNumberForDeflate() {
-        Assert.assertNotNull(new 
SevenZMethodConfiguration(SevenZMethod.DEFLATE, 42)
-                             .getOptions());
+        Assert.assertNotNull(new 
SevenZMethodConfiguration(SevenZMethod.DEFLATE, 42).getOptions());
     }
 
     @Test

Reply via email to