Skip to content

Commit

Permalink
Prefer be over eq
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Apr 30, 2023
1 parent 5a5ea9f commit 3b6caf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/delete_spec.rb
Expand Up @@ -242,13 +242,13 @@
it 'deletes the key' do
@delete.account('delete_cli', 'dw1234')
rcfile = @delete.instance_variable_get(:@rcfile)
expect(rcfile.profiles['delete_cli'].keys.include?('dw1234')).to eq false
expect(rcfile.profiles['delete_cli'].keys.include?('dw1234')).to be false
end

it 'deletes the account' do
@delete.account('delete_cli')
rcfile = @delete.instance_variable_get(:@rcfile)
expect(rcfile.profiles.keys.include?('delete_cli')).to eq false
expect(rcfile.profiles.keys.include?('delete_cli')).to be false
end
end

Expand Down

0 comments on commit 3b6caf2

Please sign in to comment.