summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-08-23 13:27:33 -0400
committerFrederic Guillot <fred@kanboard.net>2015-08-23 13:27:33 -0400
commit18377f4088349fd79aea57f813c01f3b3875e2f4 (patch)
treef3a5776773c929137b62b1b3a4bce67b852182cb /tests
parent062997e6ef3efe4a675250630029b162799c6144 (diff)
Fix unit test
Diffstat (limited to 'tests')
-rw-r--r--tests/units/UserTest.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/units/UserTest.php b/tests/units/UserTest.php
index e52f2849..f63ed3de 100644
--- a/tests/units/UserTest.php
+++ b/tests/units/UserTest.php
@@ -51,7 +51,6 @@ class UserTest extends Base
{
$u = new User($this->container);
$this->assertNotFalse($u->create(array('username' => 'user1', 'password' => '123456', 'gitlab_id' => '1234')));
- $this->assertNotFalse($u->create(array('username' => 'user2', 'password' => '123456', 'gitlab_id' => '')));
$this->assertNotEmpty($u->getByGitlabId('1234'));
$this->assertEmpty($u->getByGitlabId(''));