From 0981e7f663c9f6cfbccb49aa2956df499a63e60d Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sat, 19 Dec 2009 00:45:01 +0100 Subject: [PATCH] Fix test-readdir.js Was broken because I added "throws_error.js" to the fixtures directory. Problem appeared in bfa36136dac787793bc5106da57cccbb8db1ce14. --- test/mjsunit/test-readdir.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/mjsunit/test-readdir.js b/test/mjsunit/test-readdir.js index 79af9a1721..1b98f0fe03 100644 --- a/test/mjsunit/test-readdir.js +++ b/test/mjsunit/test-readdir.js @@ -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 () {