From ca89a5633117b104fe9313dfa6e3c39e97336885 Mon Sep 17 00:00:00 2001 From: Bill Smith Date: Fri, 14 Dec 2018 09:58:17 -0700 Subject: [PATCH] [SHIBUI-1031] Small test fix. --- .../security/controller/UsersControllerIntegrationTests.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/test/groovy/edu/internet2/tier/shibboleth/admin/ui/security/controller/UsersControllerIntegrationTests.groovy b/backend/src/test/groovy/edu/internet2/tier/shibboleth/admin/ui/security/controller/UsersControllerIntegrationTests.groovy index 075be3d0e..9faec1da1 100644 --- a/backend/src/test/groovy/edu/internet2/tier/shibboleth/admin/ui/security/controller/UsersControllerIntegrationTests.groovy +++ b/backend/src/test/groovy/edu/internet2/tier/shibboleth/admin/ui/security/controller/UsersControllerIntegrationTests.groovy @@ -141,7 +141,7 @@ class UsersControllerIntegrationTests extends Specification { def newUser = new User().with { it.firstName = 'Foo' it.lastName = 'Bar' - it.username = 'FooBar' + it.username = 'UnknownUsername' it.password = 'somepass' it.roles = [new Role().with {it.name = 'ROLE_USER'}] as Set it