Skip to content

Commit

Permalink
fix reparsing
Browse files Browse the repository at this point in the history
  • Loading branch information
handymenny committed Dec 11, 2024
1 parent 8463d87 commit 8f26868
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ object UtilityForTests {
} else {
val aSize = fileA.readBytes().size
val bSize = fileB.readBytes().size
abs(aSize - bSize) < 5 * aSize / 100
abs(aSize - bSize) < maxOf(3 * aSize / 100, 128)
}
}
return result
Expand Down

0 comments on commit 8f26868

Please sign in to comment.