features/step_definitions/filesystem_steps.rb in berkshelf-3.1.5 vs features/step_definitions/filesystem_steps.rb in berkshelf-3.2.0

- old
+ new

@@ -264,8 +264,8 @@ end Then(/^the directory "(.*?)" should contain version "(.*?)" of the "(.*?)" cookbook$/) do |path, version, name| cookbook_path = File.join(current_dir, path) cookbook = Berkshelf::CachedCookbook.from_path(cookbook_path) - expect(cookbook.version).to eql(version) - expect(cookbook.cookbook_name).to eql(name) + expect(cookbook.version).to eq(version) + expect(cookbook.cookbook_name).to eq(name) end