Commit 4c9341c7 4c9341c7fb7f6cc595e153592d2acd29849e834a by Nicolas Perriault

fixed tester tests portability

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