Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
atuchin-m committed Nov 6, 2024
1 parent f1e2cec commit 3760af1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/finch_tracker/tracker_lib.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ function readDirectory(dir: string): string {
continue;
}
const content = fs.readFileSync(filePath, 'utf-8');
result += file + '\n' + content + '\n';
if (result != '') result += '\n';
result += file + '\n' + content;
}
return result;
}
Expand Down

0 comments on commit 3760af1

Please sign in to comment.