SEC-2071: Move optional constructor arg last

This commit is contained in:
Rob Winch
2015-02-24 23:35:45 -06:00
parent fbb902c9b5
commit c0fbd30e65
2 changed files with 3 additions and 3 deletions

View File

@@ -314,7 +314,7 @@ public class ActiveDirectoryLdapAuthenticationProviderTests {
@Test
public void rootDnProvidedSeparatelyFromDomainAlsoWorks() throws Exception {
ActiveDirectoryLdapAuthenticationProvider provider = new ActiveDirectoryLdapAuthenticationProvider("dc=ad,dc=eu,dc=mydomain", "mydomain.eu", "ldap://192.168.1.200/");
ActiveDirectoryLdapAuthenticationProvider provider = new ActiveDirectoryLdapAuthenticationProvider("mydomain.eu", "ldap://192.168.1.200/", "dc=ad,dc=eu,dc=mydomain");
checkAuthentication("dc=ad,dc=eu,dc=mydomain", provider);
}