Use latest fix

This commit is contained in:
Romain Neutron 2015-01-30 19:59:13 +01:00
commit 0736141e16
3 changed files with 22 additions and 33 deletions

View file

@ -25,14 +25,10 @@ class AbstractDataTest extends TestCase
$this->assertEquals('value2', $imp->get('key2'));
}
/**
* @expectedException FFMpeg\Exception\InvalidArgumentException
*/
public function testGetInvalid()
public function testGetDefault()
{
$imp = new Implementation(array('key1' => 'value1', 'key2' => 'value2'));
$imp->get('key3');
$this->assertSame('yololo', $imp->get('key3', 'yololo'));
}
public function testKeys()