BAEL-7131 - fixed incomplete Assertion
This commit is contained in:
parent
9178b53dc9
commit
c84563ff4d
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user