Skip to content

Commit 0981e7f

Browse files
committed
Fix test-readdir.js
Was broken because I added "throws_error.js" to the fixtures directory. Problem appeared in bfa3613.
1 parent 0ea2f9e commit 0981e7f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/mjsunit/test-readdir.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ puts("readdir " + fixturesDir);
77

88
promise.addCallback(function (files) {
99
p(files);
10-
assert.deepEqual(["a.js", "b", "multipart.js", "test_ca.pem", "test_cert.pem", "test_key.pem", "x.txt"], files.sort());
10+
assert.deepEqual(["a.js", "b", "multipart.js", "test_ca.pem",
11+
"test_cert.pem", "test_key.pem", "throws_error.js", "x.txt"], files.sort());
1112
});
1213

1314
promise.addErrback(function () {

0 commit comments

Comments
 (0)