Browse Source

Fix typo in test/unit/controller/search_with_ids

Seems like a typo, should be `deepEqual` instead of `ok`
pull/951/head
Sergey Zelenov 7 years ago committed by GitHub
parent
commit
1f3bb4608c
  1. 3
      test/unit/controller/search_with_ids.js

3
test/unit/controller/search_with_ids.js

@ -387,7 +387,8 @@ module.exports.tests.service_errors = (test, common) => {
const res = {}; const res = {};
const next = () => { const next = () => {
t.ok(logger.getInfoMessages(), [ t.deepEqual(logger.getInfoMessages(), [
'[req]',
'request timed out on attempt 1, retrying', 'request timed out on attempt 1, retrying',
'request timed out on attempt 2, retrying', 'request timed out on attempt 2, retrying',
'request timed out on attempt 3, retrying' 'request timed out on attempt 3, retrying'

Loading…
Cancel
Save