summaryrefslogtreecommitdiff
path: root/spec/unit/provider/script_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/provider/script_spec.rb')
-rw-r--r--spec/unit/provider/script_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/provider/script_spec.rb b/spec/unit/provider/script_spec.rb
index 3bde5d7bb5..18a8a3305b 100644
--- a/spec/unit/provider/script_spec.rb
+++ b/spec/unit/provider/script_spec.rb
@@ -36,12 +36,12 @@ describe Chef::Provider::Script, "action_run" do
describe "#command" do
it "is only the intepreter in quotes by default" do
- expect(provider.command.strip).to eq(%Q{"perl"})
+ expect(provider.command.strip).to eq(%q{"perl"})
end
it "is the interpreter in quotes with the flags when flags are used" do
new_resource.flags "-f"
- expect(provider.command).to eq(%Q{"perl" -f})
+ expect(provider.command).to eq(%q{"perl" -f})
end
end