Skip to content

Commit

Permalink
fix rubocop offenses
Browse files Browse the repository at this point in the history
  • Loading branch information
kengelhardt-godaddy committed Oct 30, 2020
1 parent 0e52448 commit c8850a6
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 c8850a6

Please sign in to comment.