Fix leading space characters reported by checkstyle
This commit is contained in:
parent
0771778b81
commit
bed4ec7d18
|
@ -47,9 +47,7 @@ public class WebXmlJ2eeDefinedRolesRetrieverTests {
|
||||||
|
|
||||||
rolesRetriever.afterPropertiesSet();
|
rolesRetriever.afterPropertiesSet();
|
||||||
Set<String> j2eeRoles = rolesRetriever.getMappableAttributes();
|
Set<String> j2eeRoles = rolesRetriever.getMappableAttributes();
|
||||||
assertThat(j2eeRoles).isNotNull()
|
assertThat(j2eeRoles).containsAll(ROLE1TO4_EXPECTED_ROLES);
|
||||||
.hasSameSizeAs(ROLE1TO4_EXPECTED_ROLES)
|
|
||||||
.containsAll(ROLE1TO4_EXPECTED_ROLES);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
Loading…
Reference in New Issue