mirror of https://github.com/nodejs/node.git
Fix test-readdir.js
Was broken because I added "throws_error.js" to the fixtures directory.
Problem appeared in bfa36136da
.
pull/5370/head
parent
0ea2f9e04b
commit
0981e7f663
|
@ -7,7 +7,8 @@ puts("readdir " + fixturesDir);
|
|||
|
||||
promise.addCallback(function (files) {
|
||||
p(files);
|
||||
assert.deepEqual(["a.js", "b", "multipart.js", "test_ca.pem", "test_cert.pem", "test_key.pem", "x.txt"], files.sort());
|
||||
assert.deepEqual(["a.js", "b", "multipart.js", "test_ca.pem",
|
||||
"test_cert.pem", "test_key.pem", "throws_error.js", "x.txt"], files.sort());
|
||||
});
|
||||
|
||||
promise.addErrback(function () {
|
||||
|
|
Loading…
Reference in New Issue