We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 651d46e commit e84f11fCopy full SHA for e84f11f
test/pgdump.js
@@ -54,8 +54,8 @@ describe('pgdump', () => {
54
55
// eslint-disable-next-line no-bitwise
56
const permString = '0' + (stat.mode & 0o777).toString(8)
57
- expect(permString).to.equal('0777')
58
- if (permString !== '0777') {
+ expect(permString).to.equal('0755')
+ if (permString !== '0755') {
59
throw new Error('binary ' + binaryPath + ' is not executable')
60
}
61
})
0 commit comments