Corrected the expected result

This commit is contained in:
Jenny Tam 2017-12-12 16:04:34 -08:00
parent 0de708e3ab
commit eb9dc2fa61

View file

@ -91,7 +91,7 @@ error messages when trying to retrieve past the end of a result set and when no
} else {
while (!feof($stream)) {
$str = fread($stream, 10000);
if ($str !== "This is some text meant to test binding parameters to streams") {
if ($str !== "This is some more text meant to test binding parameters to streams") {
fatalError("Incorrect data: \'$str\'!\n");
}
}