BAEL-7131 - fixed incomplete Assertion
This commit is contained in:
+1
-1
@@ -42,7 +42,7 @@ public class InputStreamUnitTest {
|
||||
.getAbsolutePath();
|
||||
try (FileInputStream fis = new FileInputStream(fileAbsolutePath)) {
|
||||
int availableBytes = fis.available();
|
||||
assertThat(availableBytes > 0);
|
||||
assertThat(availableBytes).isGreaterThan(0);
|
||||
assertThat(readString(fis)).contains(expectedText);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user