Skip to content

Commit

Permalink
fixed compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
pruemmer committed Mar 15, 2024
1 parent ac738b0 commit a08805f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/test/scala/lazabs/horn/Util.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package lazabs.horn

import lazabs.horn.bottomup.HornWrapper
import lazabs.horn.Util._
import ap.api.SimpleAPI.ProverStatus
import lazabs.horn.preprocessor.HornPreprocessor.{CounterExample, Solution}
import org.scalatest.matchers.{MatchResult, Matcher}
Expand All @@ -24,8 +24,8 @@ trait CHCResultMatchers extends Matchers {
}

def hideOutput[A](comp : => A) : A =
Console.withOut(HornWrapper.NullStream) {
Console.withErr(HornWrapper.NullStream) {
Console.withOut(NullStream) {
Console.withErr(NullStream) {
comp
}
}
Expand Down
1 change: 1 addition & 0 deletions src/test/scala/lazabs/horn/theories/Rationals.scala
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

package lazabs.horn.theories

import lazabs.horn.HornWrapper
import lazabs.horn.bottomup._
import ap.parser._
import ap.theories.rationals.Rationals
Expand Down

0 comments on commit a08805f

Please sign in to comment.