Skip to content

Commit

Permalink
fix against rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
maxadamo committed Nov 19, 2024
1 parent 7491624 commit e86986e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/classes/init_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -368,15 +368,15 @@

it {
expect(subject).to contain_file('nomad config.json').with(
mode: '0600',
mode: '0600'
)
}
end

context 'When nomad is reloaded' do
it {
expect(subject).to contain_exec('reload nomad service').
with_command('systemctl reload nomad')
with_command('systemctl reload nomad')
}
end

Expand All @@ -396,7 +396,7 @@

it {
expect(subject).to contain_exec('reload nomad service').
with_command('systemctl reload nomad')
with_command('systemctl reload nomad')
}
end

Expand All @@ -411,7 +411,7 @@

it {
expect(subject).to contain_exec('reload nomad service').
with_command('systemctl reload nomad')
with_command('systemctl reload nomad')
}
end

Expand Down

0 comments on commit e86986e

Please sign in to comment.