Skip to content

Commit c6520c3

Browse files
committed
fix checkstyle warnings
1 parent 92f0193 commit c6520c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/java/io/appulse/utils/BytesSliceTests.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,9 @@ void checkSliceBounds () {
185185
);
186186

187187
assertThatThrownBy(() -> {
188-
slice.readerIndex(8);
189-
slice.writerIndex(7);
190-
})
188+
slice.readerIndex(8);
189+
slice.writerIndex(7);
190+
})
191191
.isInstanceOf(IndexOutOfBoundsException.class)
192192
.hasMessage(
193193
"Writer index error: newIndex(%d) < readerIndex(%d) || newIndex(%d) > capacity(%d)",

0 commit comments

Comments
 (0)