Remove default port from iTests

This commit is contained in:
Rob Winch
2015-01-07 10:50:43 -06:00
parent 0f09d5e000
commit 6904678382
2 changed files with 2 additions and 2 deletions

View File

@@ -179,6 +179,6 @@ public class RedisOperationsSessionRepositoryITests<S extends Session> {
availablePort = socket.getLocalPort();
socket.close();
}
return Protocol.DEFAULT_PORT;
return availablePort;
}
}

View File

@@ -179,6 +179,6 @@ public class EnableRedisHttpSessionExpireSessionDestroyedTests<S extends Expirin
availablePort = socket.getLocalPort();
socket.close();
}
return Protocol.DEFAULT_PORT;
return availablePort;
}
}