Skip to content

Commit

Permalink
Merge pull request ruby-ldap#221 from satoryu/support_integration_por…
Browse files Browse the repository at this point in the history
…t_env

Specify the port of LDAP server by giving INTEGRATION_PORT
  • Loading branch information
jch committed Sep 21, 2015
2 parents b2a0ac7 + 390fa7f commit a4b3ecc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def setup
@service = MockInstrumentationService.new
@ldap = Net::LDAP.new \
host: ENV.fetch('INTEGRATION_HOST', 'localhost'),
port: 389,
port: ENV.fetch('INTEGRATION_PORT', 389),
admin_user: 'uid=admin,dc=rubyldap,dc=com',
admin_password: 'passworD1',
search_domains: %w(dc=rubyldap,dc=com),
Expand Down

0 comments on commit a4b3ecc

Please sign in to comment.