Fixed failing tests.

This commit is contained in:
A Liu Ly
2018-02-07 08:05:21 +00:00
parent c1e2191120
commit 283baaed57
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ class AccountFederationServiceSpec extends FunSpec with ServiceSpecBase {
withTestDB { implicit session =>
val actual = AccountFederationService.getOrCreateFederatedUser("someIssuer", "someSubject", "dummy@example.com", Some("foo"), Some("Foo"))
assert(actual.get.userName == "foo")
assert(actual.get.password == "")
assert(actual.get.password == "[DUMMY]")
assert(actual.get.fullName == "Foo")
assert(actual.get.mailAddress == "dummy@example.com")
assert(!actual.get.isAdmin)