Skip to content

Commit

Permalink
Last version of 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
rchillyard committed Nov 10, 2023
1 parent a1efaa1 commit 5b742db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ organization := "com.phasmidsoftware"

name := "TableParser"

version := "1.1.3-SNAPSHOT"
version := "1.1.3"

scalaVersion := "2.13.10"

Expand Down
4 changes: 2 additions & 2 deletions src/test/scala/com/phasmidsoftware/util/EvaluateIO.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import org.scalatest.Assertion
import org.scalatest.concurrent.PatienceConfiguration.Timeout
import org.scalatest.concurrent.{Futures, ScalaFutures}
import org.scalatest.matchers.should
import org.scalatest.time.{Second, Span}
import org.scalatest.time.{Second, Seconds, Span}
import scala.concurrent.Future
import scala.util.{Failure, Success}

Expand Down Expand Up @@ -41,7 +41,7 @@ object EvaluateIO extends Futures with ScalaFutures with should.Matchers {
* @tparam X the underlying type of xio.
* @return an Assertion.
*/
def matchIO[X](xio: => IO[X], timeout: Timeout = Timeout(Span(1, Second)))(partialFunction: PartialFunction[X, Assertion]): Assertion =
def matchIO[X](xio: => IO[X], timeout: Timeout = Timeout(Span(10, Seconds)))(partialFunction: PartialFunction[X, Assertion]): Assertion =
whenReady(xio.unsafeToFuture(), timeout)(partialFunction)

/**
Expand Down

0 comments on commit 5b742db

Please sign in to comment.