Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
Fix test-readdir.js
Browse files Browse the repository at this point in the history
Was broken because I added "throws_error.js" to the fixtures directory.
Problem appeared in bfa3613.
  • Loading branch information
ry committed Dec 18, 2009
1 parent 0ea2f9e commit 0981e7f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/mjsunit/test-readdir.js
Expand Up @@ -7,7 +7,8 @@ puts("readdir " + fixturesDir);


promise.addCallback(function (files) { promise.addCallback(function (files) {
p(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 () { promise.addErrback(function () {
Expand Down

0 comments on commit 0981e7f

Please sign in to comment.