suppress new PHP-7.4 notice about failed stream_write
[m6w6/ext-http] / tests / messagebody003.phpt
index d6f9ce1478f8afd7c8635dd55e0739bacc3b9335..52968ac54869715be3a7c72d064923f1e9a40024 100644 (file)
@@ -10,7 +10,7 @@ echo "Test\n";
 
 $file = new http\Message\Body(fopen(__FILE__, "r"));
 try {
-       $file->append("nope");
+       @$file->append("nope");
 } catch (Exception $e) {
        echo $e, "\n";
 }
@@ -19,7 +19,7 @@ try {
 DONE
 --EXPECTF--
 Test
-exception 'http\Exception\RuntimeException' with message 'http\Message\Body::append(): Failed to append 4 bytes to body; wrote 0' in /home/mike/src/ext-http.git/tests/messagebody003.php:6
+http\Exception\RuntimeException: http\Message\Body::append(): Failed to append 4 bytes to body; wrote 0 in %s:%d
 Stack trace:
 #0 %s(%d): http\Message\Body->append('nope')
 #1 {main}