Skip to content

Commit

Permalink
stylistic fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tzumainn committed Oct 13, 2017
1 parent edb4e6a commit 775d7bb
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions spec/models/manageiq/providers/openstack/cloud_manager_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@

it "accepts and decrypts encrypted passwords" do
params = {
:name => 'dummy',
:provider_region => '',
:api_version => 'v2.0',
:name => 'dummy',
:provider_region => '',
:api_version => 'v2.0',
:default_security_protocol => 'non-ssl',
:default_userid => 'admin',
:default_hostname => 'address',
:default_api_port => '5000'
:default_userid => 'admin',
:default_hostname => 'address',
:default_api_port => '5000'
}
expect(OpenstackHandle::Handle).to receive(:raw_connect).with(
"admin",
Expand All @@ -81,13 +81,13 @@

it "works with unencrypted passwords" do
params = {
:name => 'dummy',
:provider_region => '',
:api_version => 'v2.0',
:name => 'dummy',
:provider_region => '',
:api_version => 'v2.0',
:default_security_protocol => 'non-ssl',
:default_userid => 'admin',
:default_hostname => 'address',
:default_api_port => '5000'
:default_userid => 'admin',
:default_hostname => 'address',
:default_api_port => '5000'
}
expect(OpenstackHandle::Handle).to receive(:raw_connect).with(
"admin",
Expand Down

0 comments on commit 775d7bb

Please sign in to comment.