diff options
Diffstat (limited to 'tests/units/TimeTrackingTest.php')
| -rw-r--r-- | tests/units/TimeTrackingTest.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/units/TimeTrackingTest.php b/tests/units/TimeTrackingTest.php index 6cf28eee..447f1c96 100644 --- a/tests/units/TimeTrackingTest.php +++ b/tests/units/TimeTrackingTest.php @@ -2,7 +2,7 @@ require_once __DIR__.'/Base.php'; -use Model\SubTask; +use Model\Subtask; use Model\TaskModification; use Model\TaskCreation; use Model\TaskFinder; @@ -17,7 +17,7 @@ class TimeTrackingTest extends Base $tc = new TaskCreation($this->container); $tf = new TaskFinder($this->container); $p = new Project($this->container); - $s = new SubTask($this->container); + $s = new Subtask($this->container); $ts = new TimeTracking($this->container); $this->assertEquals(1, $p->create(array('name' => 'Project #1'))); |
