release 0.8 (#567)
This commit is contained in:
@@ -36,7 +36,7 @@ class InvoiceDocumentRepositoryTest extends TestCase
|
||||
{
|
||||
$sut = new InvoiceDocumentRepository([]);
|
||||
$this->assertEmpty($sut->findAll());
|
||||
$this->assertInternalType('array', $sut->findAll());
|
||||
$this->assertIsArray($sut->findAll());
|
||||
$this->assertNull($sut->findByName('default'));
|
||||
}
|
||||
|
||||
|
||||
@@ -45,7 +45,7 @@ class TimesheetRepositoryTest extends AbstractRepositoryTest
|
||||
|
||||
$query->setResultType(BaseQuery::RESULT_TYPE_OBJECTS);
|
||||
$result = $repository->findByQuery($query);
|
||||
$this->assertInternalType('array', $result);
|
||||
$this->assertIsArray($result);
|
||||
}
|
||||
|
||||
public function testStoppedEntriesCannotBeStoppedAgain()
|
||||
|
||||
Reference in New Issue
Block a user