Skip to content

Commit c1e41dd

Browse files
committed
Sort members.
1 parent 25143b7 commit c1e41dd

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

src/test/java/org/apache/commons/io/input/BoundedReaderTest.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -235,15 +235,6 @@ void testShortReader() throws IOException {
235235
}
236236
}
237237

238-
@Test
239-
void testSkipTest() throws IOException {
240-
try (BoundedReader mr = new BoundedReader(bufReader1, 3)) {
241-
mr.skip(2);
242-
mr.read();
243-
assertEquals(-1, mr.read());
244-
}
245-
}
246-
247238
@Test
248239
void testSkipDoesNotExceedBound() throws IOException {
249240
try (BoundedReader mr = new BoundedReader(new StringReader("01234567890"), 3)) {
@@ -260,6 +251,15 @@ void testSkipDoesNotOverflowCharsRead() throws IOException {
260251
}
261252
}
262253

254+
@Test
255+
void testSkipTest() throws IOException {
256+
try (BoundedReader mr = new BoundedReader(bufReader1, 3)) {
257+
mr.skip(2);
258+
mr.read();
259+
assertEquals(-1, mr.read());
260+
}
261+
}
262+
263263
@Test
264264
void testSkipUsesActualSkippedCount() throws IOException {
265265
try (BoundedReader mr = new BoundedReader(new FilterReader(new StringReader("01234567890")) {

0 commit comments

Comments
 (0)