Skip to content

Commit

Permalink
Merge pull request #221 from satoryu/support_integration_port_env
Browse files Browse the repository at this point in the history
Specify the port of LDAP server by giving INTEGRATION_PORT
  • Loading branch information
jch committed Sep 21, 2015
2 parents d27c084 + f950eca commit fd8aff7
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 fd8aff7

Please sign in to comment.