diff options
author | John Keiser <john@johnkeiser.com> | 2015-06-16 13:49:26 -0700 |
---|---|---|
committer | John Keiser <john@johnkeiser.com> | 2015-06-16 16:57:07 -0700 |
commit | 6fbe77bf0c3fa2f4683487fac87f79b1eb6c293e (patch) | |
tree | 670157649ee8529602ff7845c43d785647fca2d7 /spec/unit/cookbook_version_spec.rb | |
parent | 7f81d08720d59df974ec4d5416fd24fafc2ad824 (diff) | |
download | chef-6fbe77bf0c3fa2f4683487fac87f79b1eb6c293e.tar.gz |
Only automatically set resources that do class X < Chef::Resource,jk/3524
not X = Class.new(Chef::Resource)
Diffstat (limited to 'spec/unit/cookbook_version_spec.rb')
-rw-r--r-- | spec/unit/cookbook_version_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/cookbook_version_spec.rb b/spec/unit/cookbook_version_spec.rb index 4990aef004..2bccddcaec 100644 --- a/spec/unit/cookbook_version_spec.rb +++ b/spec/unit/cookbook_version_spec.rb @@ -336,7 +336,7 @@ describe Chef::CookbookVersion do end - include_examples "to_json equalivent to Chef::JSONCompat.to_json" do + include_examples "to_json equivalent to Chef::JSONCompat.to_json" do let(:jsonable) { Chef::CookbookVersion.new("tatft", '/tmp/blah') } end |