Fix test case.

This commit is contained in:
takezoe
2013-11-03 15:12:01 +09:00
parent a0bd969140
commit 3dec2b8159
3 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ class AccountServiceServiceSpec extends Specification with ServiceSpecBase {
val RootMailAddress = "root@localhost"
"getAllUsers" in { withTestDB{
AccountService.getAllUsers must be like{
AccountService.getAllUsers() must be like{
case List(model.Account("root", "root", RootMailAddress, _, true, _, _, _, None, None, false, false)) => ok
}
}}
@@ -75,3 +75,4 @@ class AccountServiceServiceSpec extends Specification with ServiceSpecBase {
}}
}
}