Remove extra spaces

Change-Id: I0f86ac710086ce5a09f1817ba403ed7553521f86
This commit is contained in:
ZhongShengping
2017-07-26 17:31:54 +08:00
parent 963ae622c5
commit 9b7833a24d

View File

@@ -18,7 +18,7 @@ describe Puppet::Type.type(:nova_security_rule) do
expect(described_class.new(:name => 'scr0',
:ip_protocol => 'tcp',
:from_port => 22,
:to_port => 23,
:to_port => 23,
:ip_range => "0.0.0.0/0",
:security_group => "scg0")).not_to be_nil
end
@@ -27,7 +27,7 @@ describe Puppet::Type.type(:nova_security_rule) do
expect(described_class.new(:name => 'scr0',
:ip_protocol => 'tcp',
:from_port => 22,
:to_port => 23,
:to_port => 23,
:source_group => "tenant",
:security_group => "scg0")).not_to be_nil
end