fix(rubocop): fix violation [skip ci]

```
Offenses:
test/integration/default/controls/pkgs_spec.rb:112:9: C: [Correctable]
Layout/LineEndStringConcatenationIndentation: Align parts of a string
concatenated with backslash.
        "installed\nP.*\nS.*\nI.*\nM.*\nA.*\nVersion: #{v}"
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
```
This commit is contained in:
Imran Iqbal 2021-10-02 10:09:13 +01:00
parent 50bd23e72b
commit 901d7069ce
No known key found for this signature in database
GPG key ID: 6D8629439D2B7819

View file

@ -109,7 +109,7 @@ control 'Held packages' do
match_string = "#{p}-.*#{v}"
when 'debian'
match_string = "^Package: #{p}\nStatus: hold ok "\
"installed\nP.*\nS.*\nI.*\nM.*\nA.*\nVersion: #{v}"
"installed\nP.*\nS.*\nI.*\nM.*\nA.*\nVersion: #{v}"
end
describe file(lock_file) do