summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2020-12-11 13:43:46 -0800
committerLamont Granquist <lamont@scriptkiddie.org>2020-12-28 12:48:59 -0800
commitc7bab4d5778a91a54b3be7ed07931f92ea9a4561 (patch)
tree9952475656549f9efd2e2e0c6955573bbd181ddf /spec
parentb88ff7352f0872a3897363d68966160bdafb4190 (diff)
downloadchef-c7bab4d5778a91a54b3be7ed07931f92ea9a4561.tar.gz
comments and spellcheck
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'spec')
-rw-r--r--spec/functional/resource/dnf_package_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/functional/resource/dnf_package_spec.rb b/spec/functional/resource/dnf_package_spec.rb
index cd107c5843..e0a69da4f9 100644
--- a/spec/functional/resource/dnf_package_spec.rb
+++ b/spec/functional/resource/dnf_package_spec.rb
@@ -931,7 +931,7 @@ describe Chef::Resource::DnfPackage, :requires_root, external: exclude_test do
expect(dnf_package.updated_by_last_action?).to be false
end
- it "with a full version pin in the name it downgrdes the package" do
+ it "with a full version pin in the name it downgrades the package" do
preinstall("chef_rpm-1.10-1.#{pkg_arch}.rpm")
dnf_package.package_name("chef_rpm")
dnf_package.version("1.2-1")
@@ -953,7 +953,7 @@ describe Chef::Resource::DnfPackage, :requires_root, external: exclude_test do
expect(dnf_package.updated_by_last_action?).to be false
end
- it "with a partial (no release) version pin in the name it downgrdes the package" do
+ it "with a partial (no release) version pin in the name it downgrades the package" do
preinstall("chef_rpm-1.10-1.#{pkg_arch}.rpm")
dnf_package.package_name("chef_rpm")
dnf_package.version("1.2")
@@ -974,7 +974,7 @@ describe Chef::Resource::DnfPackage, :requires_root, external: exclude_test do
expect(dnf_package.updated_by_last_action?).to be false
end
- it "with a full version pin in the name it downgrdes the package" do
+ it "with a full version pin in the name it downgrades the package" do
preinstall("chef_rpm-1.10-1.#{pkg_arch}.rpm")
dnf_package.package_name("chef_rpm-1.2-1")
dnf_package.run_action(:upgrade)
@@ -994,7 +994,7 @@ describe Chef::Resource::DnfPackage, :requires_root, external: exclude_test do
expect(dnf_package.updated_by_last_action?).to be false
end
- it "with a partial (no release) version pin in the name it downgrdes the package" do
+ it "with a partial (no release) version pin in the name it downgrades the package" do
preinstall("chef_rpm-1.10-1.#{pkg_arch}.rpm")
dnf_package.package_name("chef_rpm-1.2")
dnf_package.run_action(:upgrade)