Skip to content

Commit 0181f87

Browse files
committed
fix tests for 7.3
1 parent 6479281 commit 0181f87

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/RetryWrapperTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ public function testFailedRead() {
3434
public function testFailedWrite() {
3535
$source = fopen('php://temp', 'w');
3636
$wrapped = \Icewind\Streams\RetryWrapper::wrap(FailWrapper::wrap($source));
37-
$this->assertFalse(fwrite($wrapped, 'foo'));
37+
$this->assertFalse((bool)fwrite($wrapped, 'foo'));
3838
}
3939
}

0 commit comments

Comments
 (0)