Mark usernames with @.

This commit is contained in:
Jan Böhmer 2020-02-06 19:27:24 +01:00
parent 73c2aa232d
commit 743423432e
3 changed files with 3 additions and 3 deletions

View file

@ -39,7 +39,7 @@ class UserTest extends TestCase
$user->setLastName('Doe');
$this->assertSame('John Doe', $user->getFullName(false));
$this->assertSame('John Doe (username)', $user->getFullName(true));
$this->assertSame('John Doe (@username)', $user->getFullName(true));
}
public function googleAuthenticatorEnabledDataProvider(): array