diff options
author | Tim Smith <tsmith@chef.io> | 2020-04-07 09:22:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-07 09:22:06 -0700 |
commit | b2ea23fabeed43a12fb5d3c8a70fc57a336757b0 (patch) | |
tree | 6ae2761ce90ad59e815a1db9ac86a45bf5c44633 /spec/unit/property_spec.rb | |
parent | 14deb837315af9823921870de832c1579488ff75 (diff) | |
parent | 34caf4c788e206df8a883fe333b0d66922c34e04 (diff) | |
download | chef-b2ea23fabeed43a12fb5d3c8a70fc57a336757b0.tar.gz |
Merge pull request #9609 from MsysTechnologiesllc/VSingh/typos-fixes
Spell checking in comments and log messages
Diffstat (limited to 'spec/unit/property_spec.rb')
-rw-r--r-- | spec/unit/property_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/property_spec.rb b/spec/unit/property_spec.rb index 177314d8bc..1e6ec8878a 100644 --- a/spec/unit/property_spec.rb +++ b/spec/unit/property_spec.rb @@ -819,7 +819,7 @@ describe "Chef::Resource.property" do expect(resource.x).to eq 2 expect(Namer.current_index).to eq 2 end - it "setting the same lazy value on two different instances runs it on each instancee" do + it "setting the same lazy value on two different instances runs it on each instances" do resource2 = resource_class.new("blah2") l = lazy { Namer.next_index } resource.x l @@ -1319,7 +1319,7 @@ describe "Chef::Resource.property" do expect { thing_two_resource.copy_properties_from(thing_three_resource) }.to raise_error(NoMethodError) end - it "does not blow up if blows up if the target resource does not implement a set propery" do + it "does not blow up if blows up if the target resource does not implement a set properly" do thing_three_resource.foo "foo" thing_three_resource.bar "bar" thing_two_resource.copy_properties_from(thing_three_resource) |