summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Chambers <ccgithub@chrischambers.net>2015-08-19 12:28:11 -0500
committerChris Chambers <ccgithub@chrischambers.net>2015-08-19 12:28:11 -0500
commitc415be5e046674c3eb8b51dfdf937bf3bab745ce (patch)
tree3d7ceaa3b78fc7404fb34d4ca0943662f67bb5ae
parent74f07947bf6b3a2dd7db74f864a9afc3b00f26cc (diff)
downloadohai-c415be5e046674c3eb8b51dfdf937bf3bab745ce.tar.gz
Correct some spacing
-rw-r--r--spec/unit/plugins/solaris2/cpu_spec.rb11
1 files changed, 4 insertions, 7 deletions
diff --git a/spec/unit/plugins/solaris2/cpu_spec.rb b/spec/unit/plugins/solaris2/cpu_spec.rb
index 6e92ac44..2d5716c6 100644
--- a/spec/unit/plugins/solaris2/cpu_spec.rb
+++ b/spec/unit/plugins/solaris2/cpu_spec.rb
@@ -444,7 +444,7 @@ cpu_info:15:cpu_info15:vendor_id GenuineIntel
END
allow(@plugin).to receive(:shell_out).with("kstat -p cpu_info").and_return(mock_shell_out(0, kstatinfo_output, ""))
@plugin.run
- end
+ end
it "should get the total virtual processor count" do
expect(@plugin["cpu"]["total"]).to eql(16)
@@ -625,15 +625,13 @@ END
expect(@plugin["cpu"]["2"]["state"]).to eql("off-line")
expect(@plugin["cpu"]["0"]["state"]).to eql("off-line")
end
-
-
end
end
describe "on sparc processors" do
before(:each) do
- kstatinfo_output = <<-END
+ kstatinfo_output = <<-END
cpu_info:0:cpu_info0:brand SPARC-T3
cpu_info:0:cpu_info0:chip_id 0
cpu_info:0:cpu_info0:class misc
@@ -2811,8 +2809,8 @@ cpu_info:127:cpu_info127:state off-line
cpu_info:127:cpu_info127:state_begin 1430258903
cpu_info:127:cpu_info127:supported_frequencies_Hz 1648762500
END
- allow(@plugin).to receive(:shell_out).with("kstat -p cpu_info").and_return(mock_shell_out(0, kstatinfo_output, ""))
- @plugin.run
+ allow(@plugin).to receive(:shell_out).with("kstat -p cpu_info").and_return(mock_shell_out(0, kstatinfo_output, ""))
+ @plugin.run
end
it "should get the total virtual processor count" do
@@ -2924,7 +2922,6 @@ END
expect(@plugin["cpu"]["126"]["state"]).to eql("off-line")
expect(@plugin["cpu"]["127"]["state"]).to eql("off-line")
end
-
end
end
end