summaryrefslogtreecommitdiff
path: root/tests/units/Model/TaskFinderTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/units/Model/TaskFinderTest.php')
-rw-r--r--tests/units/Model/TaskFinderTest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/units/Model/TaskFinderTest.php b/tests/units/Model/TaskFinderTest.php
index 859a9ea6..ef9d7830 100644
--- a/tests/units/Model/TaskFinderTest.php
+++ b/tests/units/Model/TaskFinderTest.php
@@ -44,7 +44,7 @@ class TaskFinderTest extends Base
$tasks = $tf->getOverdueTasksByProject(1);
$this->assertNotEmpty($tasks);
$this->assertTrue(is_array($tasks));
- $this->assertcount(1, $tasks);
+ $this->assertCount(1, $tasks);
$this->assertEquals('Task #1', $tasks[0]['title']);
}