Fix buggy test
This commit is contained in:
parent
954c0e0f19
commit
25ec184d5e
1 changed files with 1 additions and 1 deletions
|
@ -225,7 +225,7 @@ class VideoDownloadTest extends \PHPUnit_Framework_TestCase
|
||||||
{
|
{
|
||||||
$stream = $this->download->getAudioStream($url, $format);
|
$stream = $this->download->getAudioStream($url, $format);
|
||||||
$this->assertInternalType('resource', $stream);
|
$this->assertInternalType('resource', $stream);
|
||||||
$this->assertNotEmpty(fread($stream, 100));
|
$this->assertFalse(feof($stream));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue