Commit 4c9341c7 4c9341c7fb7f6cc595e153592d2acd29849e834a by Nicolas Perriault

fixed tester tests portability

1 parent 6a2e5f33
......@@ -39,7 +39,7 @@ var expected = [
"04/01_init.js",
"04/02_do.js"
].map(function(entry) {
return fs.pathJoin(testDirRoot, entry);
return fs.pathJoin.apply(fs, [testDirRoot].concat(entry.split('/')));
});
t.assertEquals(files, expected, 'findTestFiles() find test files and sort them');
......