We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 511ac4e commit 1b19116Copy full SHA for 1b19116
core/src/test/java/com/datastax/oss/driver/internal/core/protocol/ByteBufPrimitiveCodecTest.java
@@ -219,8 +219,7 @@ public void read_bytes_should_throw_when_not_enough_content() {
219
// contents : only 2 bytes
220
0xca,
221
0xfe);
222
- assertThatThrownBy(() -> codec.readBytes(source))
223
- .isInstanceOf(IndexOutOfBoundsException.class);
+ assertThatThrownBy(() -> codec.readBytes(source)).isInstanceOf(IndexOutOfBoundsException.class);
224
}
225
226
@Test
0 commit comments