summaryrefslogtreecommitdiff
path: root/spec/unit/chef_class_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/chef_class_spec.rb')
-rw-r--r--spec/unit/chef_class_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/chef_class_spec.rb b/spec/unit/chef_class_spec.rb
index f9ea00090e..2f370388fa 100644
--- a/spec/unit/chef_class_spec.rb
+++ b/spec/unit/chef_class_spec.rb
@@ -113,7 +113,7 @@ describe "Chef class" do
before { Chef::Config[:treat_deprecation_warnings_as_errors] = false }
it "displays a simple deprecation warning" do
- expect(Chef::Log).to receive(:warn).with(%r{I'm a little teapot\..*?spec/unit/chef_class_spec\.rb.*?Please see}m)
+ expect(Chef::Log).to receive(:warn).with(%r{spec/unit/chef_class_spec\.rb.*?I'm a little teapot.*?Please see}m)
Chef.deprecated(:generic, "I'm a little teapot.")
end
@@ -222,7 +222,7 @@ describe "Chef class" do
before { Chef::Config[:treat_deprecation_warnings_as_errors] = true }
it "displays a simple deprecation error" do
- expect(Chef::Log).to receive(:error).with(%r{I'm a little teapot\..*?spec/unit/chef_class_spec\.rb.*?Please see}m)
+ expect(Chef::Log).to receive(:error).with(%r{spec/unit/chef_class_spec\.rb.*?I'm a little teapot.*?Please see}m)
expect { Chef.deprecated(:generic, "I'm a little teapot.") }.to raise_error(/I'm a little teapot./)
end
end