summaryrefslogtreecommitdiff
path: root/spec/mixlib/shellout_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/mixlib/shellout_spec.rb')
-rw-r--r--spec/mixlib/shellout_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/mixlib/shellout_spec.rb b/spec/mixlib/shellout_spec.rb
index 35757eb..0d444a3 100644
--- a/spec/mixlib/shellout_spec.rb
+++ b/spec/mixlib/shellout_spec.rb
@@ -460,7 +460,7 @@ describe Mixlib::ShellOut do
expect(shell_cmd.umask).to eql(002222)
end
- it "should set the timout" do
+ it "should set the timeout" do
expect(shell_cmd.timeout).to eql(timeout)
end
@@ -472,7 +472,7 @@ describe Mixlib::ShellOut do
context "when setting the :env option" do
let(:options) { { env: environment } }
- it "should also set the enviroment" do
+ it "should also set the environment" do
expect(shell_cmd.environment).to eql({ "RUBY_OPTS" => "-w" })
end
end