Fix test Icinga/File/CsvTest.php because the method being tested has been changed

refs #6542
This commit is contained in:
Alexander Klimov 2014-06-27 12:49:14 +02:00
parent 4b72e1b54f
commit 23baa0dc83
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ class CsvTest extends BaseTestCase
$queryMock = Mockery::mock(
'Icinga\Data\SimpleQuery',
array(
'fetchAll' => array(
'getQuery->fetchAll' => array(
array('col1' => 'val1', 'col2' => 'val2', 'col3' => 'val3', 'col4' => 'val4'),
array('col1' => 'val5', 'col2' => 'val6', 'col3' => 'val7', 'col4' => 'val8')
)