Commit e681f91e authored by Jeremy Mikola's avatar Jeremy Mikola

Fix typo in stream_get_contents() call

parent 4078d0a6
......@@ -38,7 +38,7 @@ abstract class FunctionalTestCase extends BaseFunctionalTestCase
{
$this->assertInternalType('resource', $stream);
$this->assertSame('stream', get_resource_type($stream));
$this->assertEquals($expectedContents, stream_get_contents($stream, -1,.0));
$this->assertEquals($expectedContents, stream_get_contents($stream, -1, 0));
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment