formatting test output fix

This commit is contained in:
Sebastian Hildebrandt
2021-01-27 11:47:27 +01:00
parent 4a2b221d9e
commit 8ff4e0572e
+1 -1
View File
@@ -59,7 +59,7 @@ function stopDots() {
function printTitle(title) { function printTitle(title) {
// https://en.wikipedia.org/wiki/Box_Drawing_(Unicode_block) // https://en.wikipedia.org/wiki/Box_Drawing_(Unicode_block)
title = '│' + (' ' + title + ' ').substr(0, 44 - lib_version.length) + 'v: ' + lib_version + ' │'; title = '│' + (' ' + title + ' ').substr(0, 44 - lib_version.length) + 'v: ' + lib_version + ' │';
console.log('┌────────────────────────────────────────────────┐'); console.log('┌────────────────────────────────────────────────┐');
console.log(title); console.log(title);
console.log('└────────────────────────────────────────────────┘'); console.log('└────────────────────────────────────────────────┘');