fix(xo-server-auth-ldap/test-cli): pforOwn → pForOwn

Introduced in b3004a38aa, never released.
This commit is contained in:
Julien Fontanet 2019-01-02 16:01:44 +01:00
parent c9f0481efc
commit 3a9b68fd8d

View File

@ -1,5 +1,5 @@
import { forEach, isFinite, isInteger } from 'lodash'
import { pforOwn } from 'promise-toolbox'
import { pForOwn } from 'promise-toolbox'
import { prompt } from 'inquirer'
// ===================================================================
@ -160,7 +160,7 @@ const promptByType = {
}
}
await pforOwn.call(schema.properties || {}, promptProperty)
await pForOwn.call(schema.properties || {}, promptProperty)
return value
},