Skip to content

Commit 5429647

Browse files
committed
Use jacodb with classpathWithApproximations
1 parent b74f3c8 commit 5429647

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utbot-junit-contest/src/main/kotlin/org/utbot/contest/usvm/JacoDBContainer.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import org.jacodb.api.JcClasspath
55
import org.jacodb.api.JcDatabase
66
import org.jacodb.impl.JcSettings
77
import org.jacodb.impl.jacodb
8+
import org.usvm.util.classpathWithApproximations
89
import java.io.File
910

1011
// TODO usvm-sbft-refactoring: copied from `usvm/usvm-jvm/test`, extract this class back to USVM project
@@ -18,8 +19,7 @@ class JacoDBContainer(
1819
init {
1920
val (db, cp) = runBlocking {
2021
val db = jacodb(builder)
21-
// TODO usvm-sbft: do we need `db.classpath(classpath)` or `db.classpathWithApproximations(classpath)` for contest?
22-
val cp = db.classpath(classpath)
22+
val cp = db.classpathWithApproximations(classpath)
2323
db to cp
2424
}
2525
this.db = db

0 commit comments

Comments
 (0)