summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--spec/integration/ohai/ohai_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/integration/ohai/ohai_spec.rb b/spec/integration/ohai/ohai_spec.rb
index af4dd5fe38..9e2ef4b96a 100644
--- a/spec/integration/ohai/ohai_spec.rb
+++ b/spec/integration/ohai/ohai_spec.rb
@@ -51,11 +51,11 @@ describe "ohai" do
# test succeeds and the other one fails, then it can be some kind of shelling-out
# issue or poor performance due to I/O on starting up ruby to run ohai, etc.
#
- it "the hostname plugin must return in under 2 seconds when called from pure ruby" do
+ it "the hostname plugin must return in under 4 seconds when called from pure ruby" do
delta = Benchmark.realtime do
Ohai::System.new.all_plugins(["hostname"])
end
- expect(delta).to be < 2
+ expect(delta).to be < 4
end
end
end