Skip to content

Commit f91d5b5

Browse files
authored
Merge pull request #553 from eed3si9n/wip/flaky
Make CachedHashingSpec more lenient
2 parents 182356e + 2590468 commit f91d5b5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

zinc/src/test/scala/sbt/inc/cached/CachedHashingSpec.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ class CachedHashingSpec extends BaseCompilerSpec {
5858

5959
val hashingTime = timeMs(genConfig)
6060
val cachedHashingTime = timeMs(genConfig)
61-
assert(cachedHashingTime < (hashingTime * 0.20),
62-
s"Cache jar didn't work: $cachedHashingTime is >= than 20% of $hashingTime.")
61+
assert(cachedHashingTime < (hashingTime * 0.50),
62+
s"Cache jar didn't work: $cachedHashingTime is >= than 50% of $hashingTime.")
6363
}
6464
}
6565

0 commit comments

Comments
 (0)