diff options
Diffstat (limited to 'tests/units/Model/UserUnreadNotificationTest.php')
-rw-r--r-- | tests/units/Model/UserUnreadNotificationTest.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/units/Model/UserUnreadNotificationTest.php b/tests/units/Model/UserUnreadNotificationTest.php index 918ab411..843b7860 100644 --- a/tests/units/Model/UserUnreadNotificationTest.php +++ b/tests/units/Model/UserUnreadNotificationTest.php @@ -4,7 +4,6 @@ require_once __DIR__.'/../Base.php'; use Kanboard\Model\TaskFinder; use Kanboard\Model\TaskCreation; -use Kanboard\Model\User; use Kanboard\Model\Task; use Kanboard\Model\Project; use Kanboard\Model\UserUnreadNotification; @@ -17,7 +16,6 @@ class UserUnreadNotificationTest extends Base $p = new Project($this->container); $tf = new TaskFinder($this->container); $tc = new TaskCreation($this->container); - $u = new User($this->container); $this->assertEquals(1, $p->create(array('name' => 'test'))); $this->assertEquals(1, $tc->create(array('title' => 'test', 'project_id' => 1))); @@ -35,7 +33,6 @@ class UserUnreadNotificationTest extends Base $p = new Project($this->container); $tf = new TaskFinder($this->container); $tc = new TaskCreation($this->container); - $u = new User($this->container); $this->assertEquals(1, $p->create(array('name' => 'test'))); $this->assertEquals(1, $tc->create(array('title' => 'test', 'project_id' => 1))); @@ -55,7 +52,6 @@ class UserUnreadNotificationTest extends Base $p = new Project($this->container); $tf = new TaskFinder($this->container); $tc = new TaskCreation($this->container); - $u = new User($this->container); $this->assertEquals(1, $p->create(array('name' => 'test'))); $this->assertEquals(1, $tc->create(array('title' => 'test', 'project_id' => 1))); @@ -77,7 +73,6 @@ class UserUnreadNotificationTest extends Base $p = new Project($this->container); $tf = new TaskFinder($this->container); $tc = new TaskCreation($this->container); - $u = new User($this->container); $this->assertEquals(1, $p->create(array('name' => 'test'))); $this->assertEquals(1, $tc->create(array('title' => 'test', 'project_id' => 1))); |