0
0
Fork 0

Use chewy which relaxes ES version reqs (#30157)

This commit is contained in:
Matt Jankowski 2024-05-06 07:50:45 -04:00 committed by GitHub
parent e5062b7135
commit dbaa4ed891
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 9 deletions

View file

@ -127,7 +127,7 @@ describe Admin::SystemCheck::ElasticsearchCheck do
end
def stub_elasticsearch_error
client = instance_double(Elasticsearch::Transport::Client)
client = instance_double(Elasticsearch::Client)
allow(client).to receive(:info).and_raise(Elasticsearch::Transport::Transport::Error)
allow(Chewy).to receive(:client).and_return(client)
end