mirror of https://github.com/sbt/sbt.git
Relax the test
This commit is contained in:
parent
598be45e2c
commit
3b3b155d1a
|
|
@ -43,8 +43,7 @@ object ModuleResolversTest extends BaseIvySpecification {
|
|||
println(s"NORMAL RESOLUTION TIME $normalResolutionTime")
|
||||
println(s"FASTER RESOLUTION TIME $fasterResolutionTime")
|
||||
|
||||
// Check that faster resolution is at least 1/5 faster than normal resolution
|
||||
// This is a conservative check just to make sure we don't regress -- speedup is higher
|
||||
assert(fasterResolutionTime <= (normalResolutionTime * 0.80))
|
||||
// Check that faster resolution is faster
|
||||
assert(fasterResolutionTime < normalResolutionTime)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue