Skip to content

Commit 8f88cb9

Browse files
committed
improve error message
1 parent 930192c commit 8f88cb9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/syntax_test.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,11 @@ function assertFileNames() {
8282
var base = path.basename(file);
8383

8484
if(base !== base.toLowerCase()) {
85-
logs.push(file + ' : has some non-lower-case characters.');
85+
logs.push([
86+
file, ' :',
87+
'has a file name containing some',
88+
'non-lower-case characters'
89+
]);
8690
}
8791
});
8892

0 commit comments

Comments
 (0)