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-io.git
commit 4e8c2df9e9c18774d890ffdb53bde77da4c4a2a7 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jul 14 10:03:06 2024 -0400 Format nit --- .../java/org/apache/commons/io/input/SwappedDataInputStreamTest.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/test/java/org/apache/commons/io/input/SwappedDataInputStreamTest.java b/src/test/java/org/apache/commons/io/input/SwappedDataInputStreamTest.java index 2002670e5..7ff2fd483 100644 --- a/src/test/java/org/apache/commons/io/input/SwappedDataInputStreamTest.java +++ b/src/test/java/org/apache/commons/io/input/SwappedDataInputStreamTest.java @@ -51,7 +51,7 @@ public class SwappedDataInputStreamTest { 0x08 }; final ByteArrayInputStream bais = new ByteArrayInputStream(bytes); - this.sdis = new SwappedDataInputStream( bais ); + this.sdis = new SwappedDataInputStream(bais); } @AfterEach @@ -134,8 +134,7 @@ public class SwappedDataInputStreamTest { @Test public void testReadUTF() { - assertThrows(UnsupportedOperationException.class, () -> this.sdis.readUTF(), - "readUTF should be unsupported. "); + assertThrows(UnsupportedOperationException.class, () -> this.sdis.readUTF(), "readUTF should be unsupported. "); } @Test