diff options
author | Matt Ray <github@mattray.dev> | 2020-05-21 06:57:21 +1000 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-05-22 08:59:15 -0700 |
commit | 1dc7256435a37a036497e7b7686cbde2d2358602 (patch) | |
tree | 40320ece9ea246ead4c3f2438f2c681a7b1c13e6 | |
parent | 2b015db32d56ab5a383f2a182860f8c884a2c287 (diff) | |
download | chef-1dc7256435a37a036497e7b7686cbde2d2358602.tar.gz |
Fixed armv6l and armv7l tests.
Signed-off-by: Matt Ray <github@mattray.dev>
-rw-r--r-- | chef-utils/spec/unit/dsl/architecture_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chef-utils/spec/unit/dsl/architecture_spec.rb b/chef-utils/spec/unit/dsl/architecture_spec.rb index 0334b08835..30eab27bfb 100644 --- a/chef-utils/spec/unit/dsl/architecture_spec.rb +++ b/chef-utils/spec/unit/dsl/architecture_spec.rb @@ -132,12 +132,12 @@ RSpec.describe ChefUtils::DSL::Architecture do arch_reports_true_for(:armhf?, :_32_bit?, :arm?) end context "on armv6l" do - let(:arch) { "armhf" } + let(:arch) { "armv6l" } arch_reports_true_for(:armhf?, :_32_bit?, :arm?) end context "on armv7l" do - let(:arch) { "armhf" } + let(:arch) { "armv7l" } arch_reports_true_for(:armhf?, :_32_bit?, :arm?) end |