Skip to content

Commit

Permalink
Another fix for rubocop.
Browse files Browse the repository at this point in the history
This was flagged on CI but did not come up locally.
  • Loading branch information
oneiros committed Jan 31, 2024
1 parent 90335ae commit 87a4835
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/models/hiera_data/lookup_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class LookupTest < ActiveSupport::TestCase
"role_integer" => 2
} },
"from_common",
["nested", "list"]
%w[nested list]
]
assert_equal expected, result
end
Expand All @@ -53,7 +53,7 @@ class LookupTest < ActiveSupport::TestCase
result = perform_lookup("hdm_nested_array", merge_strategy: :deep)
expected = [
"from_common",
["nested", "list"],
%w[nested list],
"duplicate",
"from_role",
{ "nested_hash" => {
Expand Down

0 comments on commit 87a4835

Please sign in to comment.