diff --git a/src/comment.ts b/src/comment.ts index 154d8c0..2054561 100644 --- a/src/comment.ts +++ b/src/comment.ts @@ -3,7 +3,7 @@ import { percentage } from "./lcov.js"; import { LvocList } from "./app.js"; const renderEmoji = (pdiff: number) => { - if (pdiff < 0.01) return ":x:"; + if (pdiff < -0.01) return ":x:"; if (pdiff > 0.01) return ":heavy_check_mark:";