summaryrefslogtreecommitdiff
path: root/tests/units/Model/TaskFinderTest.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-05-24 22:41:13 -0400
committerFrederic Guillot <fred@kanboard.net>2016-05-24 22:41:21 -0400
commita2e5d022e5fd652c7e37e9d9550deb3cf2cb41c8 (patch)
tree4564133b9c4545c585384d196c77d2561d8c79d4 /tests/units/Model/TaskFinderTest.php
parent5b30cd43d4c4197f40fde979e4afdd4ff2518442 (diff)
Clean up unit tests
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']);
}