Skip to content

Commit 4dfbb23

Browse files
committed
Fix test-to-code ratio
1 parent cecc4b8 commit 4dfbb23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/printCommitStats.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ function toRatioString(
136136
const [prodRatio, testRatio] = toRatio(stats.get('production').numLineAdded, stats.get('test').numLineAdded);
137137

138138
console.log(
139-
`Test to code ratio = ${toRatioString(stats.get('production').numLineAdded, stats.get('test').numLineAdded)}`
139+
`Test to code ratio = ${toRatioString(stats.get('test').numLineAdded, stats.get('production').numLineAdded)}`
140140
);
141141

142142
console.log();

0 commit comments

Comments
 (0)