diff options
author | Matt Ray <github@mattray.dev> | 2020-05-21 06:57:21 +1000 |
---|---|---|
committer | Matt Ray <github@mattray.dev> | 2020-05-21 06:57:21 +1000 |
commit | e6b8daaf78df0b6f1b41ed43eb2fe4a1c47eeba6 (patch) | |
tree | 6132afc068babf7d8dc86eb56d4a8c1ef09cfe6d /chef-utils | |
parent | 0aac0e30a5532e9d2d32764c8f3221efba475f86 (diff) | |
download | chef-e6b8daaf78df0b6f1b41ed43eb2fe4a1c47eeba6.tar.gz |
Fixed armv6l and armv7l tests.
Signed-off-by: Matt Ray <github@mattray.dev>
Diffstat (limited to 'chef-utils')
-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 |