chore: update deps, including aegir

This commit is contained in:
David Dias
2017-12-14 05:52:48 +00:00
parent 6180213681
commit a25ecb19a7
4 changed files with 14248 additions and 15 deletions

View File

@ -112,7 +112,7 @@ module.exports = (common) => {
stream,
pull.collect((err, chunks) => {
expect(err).to.not.exist.mark()
expect(chunks).to.be.eql([Buffer('hey')]).mark()
expect(chunks).to.be.eql([Buffer.from('hey')]).mark()
})
)
@ -132,7 +132,7 @@ module.exports = (common) => {
stream,
pull.collect((err, chunks) => {
expect(err).to.not.exist.mark()
expect(chunks).to.be.eql([Buffer('hello')]).mark()
expect(chunks).to.be.eql([Buffer.from('hello')]).mark()
})
)
}

View File

@ -130,7 +130,7 @@ module.exports = (common) => {
conns.forEach((conn, i) => {
pull(
pull.values([Buffer('hello')]),
pull.values([Buffer.from('hello')]),
pull.asyncMap((val, cb) => {
setTimeout(() => {
cb(null, val)
@ -139,7 +139,7 @@ module.exports = (common) => {
conn,
pull.collect((err, data) => {
expect(err).to.not.exist.mark()
expect(data).to.be.eql([Buffer('hello')]).mark()
expect(data).to.be.eql([Buffer.from('hello')]).mark()
})
)
})