Skip to content

Commit

Permalink
wrong logic makes wrong tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bugoff committed Feb 11, 2024
1 parent 27bf737 commit 731b79a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/unit/attributes_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@
expect(ntp['conf_group']).to eq('root')
end

it 'sets the var_owner to ntpsec' do
expect(ntp['var_owner']).to eq('ntpsec')
it 'sets the var_owner to ntp' do
expect(ntp['var_owner']).to eq('ntp')
end

it 'sets the var_group to ntpsec' do
expect(ntp['var_group']).to eq('ntpsec')
it 'sets the var_group to ntp' do
expect(ntp['var_group']).to eq('ntp')
end

it 'sets the leapfile to /etc/ntp.leapseconds' do
Expand Down

0 comments on commit 731b79a

Please sign in to comment.