Skip to content

Commit e681f91

Browse files
committed
Fix typo in stream_get_contents() call
1 parent 4078d0a commit e681f91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/GridFS/FunctionalTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ protected function assertStreamContents($expectedContents, $stream)
3838
{
3939
$this->assertInternalType('resource', $stream);
4040
$this->assertSame('stream', get_resource_type($stream));
41-
$this->assertEquals($expectedContents, stream_get_contents($stream, -1,.0));
41+
$this->assertEquals($expectedContents, stream_get_contents($stream, -1, 0));
4242
}
4343

4444
/**

0 commit comments

Comments
 (0)