diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-08-23 13:27:33 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-08-23 13:27:33 -0400 |
commit | 18377f4088349fd79aea57f813c01f3b3875e2f4 (patch) | |
tree | f3a5776773c929137b62b1b3a4bce67b852182cb | |
parent | 062997e6ef3efe4a675250630029b162799c6144 (diff) |
Fix unit test
-rw-r--r-- | tests/units/UserTest.php | 1 |
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('')); |