Skip to content

Commit

Permalink
[#6] Replace falsy by eq(false) in client service spec test
Browse files Browse the repository at this point in the history
  • Loading branch information
malparty committed Jun 23, 2021
1 parent 902742d commit 93704d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/services/google/client_service_spec.rb
Expand Up @@ -21,7 +21,7 @@
it 'returns false', vcr: 'google_warn' do
result = described_class.new(keyword: FFaker::Lorem.word).call

expect(result).to be_falsey
expect(result).to eq(false)
end

it 'logs a warning with the escaped keyword', vcr: 'google_warn' do
Expand Down

0 comments on commit 93704d4

Please sign in to comment.