From 0469abd4a9c9270a1fdc962969e36e63699af8b4 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Sun, 10 Dec 2017 21:51:33 +0100 Subject: upgrade dependencies --- node_modules/errno/test.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'node_modules/errno/test.js') diff --git a/node_modules/errno/test.js b/node_modules/errno/test.js index 6b76a85ae..3a0ef7013 100755 --- a/node_modules/errno/test.js +++ b/node_modules/errno/test.js @@ -8,14 +8,14 @@ test('sanity checks', function (t) { t.ok(errno.errno, 'errno.errno not found') t.ok(errno.code, 'errno.code not found') - t.equal(errno.all.length, 59, 'found ' + errno.all.length + ', expected 59') - t.equal(errno.errno['-1'], errno.all[0], 'errno -1 not first element') + t.equal(errno.all.length, 60, 'found ' + errno.all.length + ', expected 60') + t.equal(errno.errno['-1'], errno.all[1], 'errno -1 not second element') - t.equal(errno.code['UNKNOWN'], errno.all[0], 'code UNKNOWN not first element') + t.equal(errno.code['UNKNOWN'], errno.all[1], 'code UNKNOWN not second element') - t.equal(errno.errno[1], errno.all[2], 'errno 1 not third element') + t.equal(errno.errno[1], errno.all[3], 'errno 1 not fourth element') - t.equal(errno.code['EOF'], errno.all[2], 'code EOF not third element') + t.equal(errno.code['EOF'], errno.all[3], 'code EOF not fourth element') t.end() }) -- cgit v1.2.3