Skip to content

Commit

Permalink
Merge pull request #1421 from kBite/fix-unit-tests
Browse files Browse the repository at this point in the history
fix rubocop offenses introduced with #1420
  • Loading branch information
bastelfreak committed Nov 1, 2020
2 parents 0e52448 + c8850a6 commit 44f4a2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/defines/resource_location_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,10 @@
{
title: 'should set location_allow (nested array)',
attr: 'location_allow',
value: %w[127.0.0.1 10.0.0.1 [127.0.0.2 10.0.0.2]],
value: ['127.0.0.1', '10.0.0.1', ['127.0.0.2', '10.0.0.2']],
match: [
' allow 127.0.0.1;',
' allow 10.0.0.1;'
' allow 10.0.0.1;',
' allow 127.0.0.2;',
' allow 10.0.0.2;'
]
Expand Down

0 comments on commit 44f4a2d

Please sign in to comment.