From e32379af3ea6cffee0a2eec829d5233b11e2df54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez?= Date: Mon, 22 Jan 2018 23:01:35 -0500 Subject: [PATCH] Fix port --- .../org/springframework/ldap/itest/ldap473/Ldap473Test.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration-tests/src/test/java/org/springframework/ldap/itest/ldap473/Ldap473Test.java b/test/integration-tests/src/test/java/org/springframework/ldap/itest/ldap473/Ldap473Test.java index c2883626..88266c3f 100644 --- a/test/integration-tests/src/test/java/org/springframework/ldap/itest/ldap473/Ldap473Test.java +++ b/test/integration-tests/src/test/java/org/springframework/ldap/itest/ldap473/Ldap473Test.java @@ -36,7 +36,7 @@ public class Ldap473Test { @Bean public ContextSource contextSource() { LdapContextSource contextSource = new LdapContextSource(); - contextSource.setUrl("ldap://localhost:9321"); + contextSource.setUrl("ldap://localhost:9322"); contextSource.setUserDn(null); contextSource.setPassword(null); return contextSource; @@ -52,7 +52,7 @@ public class Ldap473Test { EmbeddedLdapServerFactoryBean embeddedLdapServer = new EmbeddedLdapServerFactoryBean(); embeddedLdapServer.setPartitionName("example"); embeddedLdapServer.setPartitionSuffix("dc=261consulting,dc=com"); - embeddedLdapServer.setPort(9321); + embeddedLdapServer.setPort(9322); return embeddedLdapServer; }