Fix unit test

This commit is contained in:
Frederic Guillot 2015-08-23 13:27:33 -04:00
parent 062997e6ef
commit 18377f4088
1 changed files with 0 additions and 1 deletions

View File

@ -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(''));