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 8595563 commit cd8e17cCopy full SHA for cd8e17c
turbo-unit-core/src/test/java/org/fugerit/java/turbo/unit/core/io/TestExampleReadStream.java
@@ -44,7 +44,6 @@ void testOk() throws IOException {
44
ExampleReadStream example = new ExampleReadStream();
45
String testOk = "OK";
46
try (InputStream is = new ByteArrayInputStream(testOk.getBytes())) {
47
- // Assertions.assertThrows(ExampleRuntimeException.class, () -> example.readBytes(is));
48
byte[] data = example.readBytes(is);
49
Assertions.assertArrayEquals( data, testOk.getBytes() );
50
}
0 commit comments