Fixed tests
Tests tried to get the Control via `$this->getControl()` which obviously failed.
This commit is contained in:
parent
2d8613b859
commit
6bae56490b
1 changed files with 2 additions and 2 deletions
|
|
@ -58,7 +58,7 @@ class PackagerTest extends \PHPUnit_Framework_TestCase
|
|||
$this->object->run();
|
||||
$command = $this->object->build();
|
||||
|
||||
$control = $this->getControl();
|
||||
$control = $this->object->getControl();
|
||||
$name = $control['Package'];
|
||||
$version = $control['Version'];
|
||||
$arch = $control['Architecture'];
|
||||
|
|
@ -79,7 +79,7 @@ class PackagerTest extends \PHPUnit_Framework_TestCase
|
|||
$this->object->run();
|
||||
$command = $this->object->build();
|
||||
|
||||
$control = $this->getControl();
|
||||
$control = $this->object->getControl();
|
||||
$name = $control['Package'];
|
||||
$version = $control['Version'];
|
||||
$arch = $control['Architecture'];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue