Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
armanbilge committed Dec 3, 2024
1 parent e92a8c3 commit dc50ba9
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ Early versions (`0.x.y`) were published under the `com.codecommit` groupId.
```scala
import scala.concurrent.duration._
import utest._
import cats.implicits._
import cats.syntax.all._
import cats.effect.IO
import cats.effect.testing.utest.IOTestSuite

Expand Down Expand Up @@ -138,7 +138,7 @@ non-IO tests

```scala
import scala.concurrent.duration._
import cats.implicits._
import cats.syntax.all._
import cats.effect.IO
import cats.effect.testing.minitest.IOTestSuite

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package cats.effect.testing.minitest

import cats.effect.IO
import scala.concurrent.duration._
import cats.implicits._
import cats.syntax.all._

@deprecated("use TestControl instead", since = "1.5.0")
object TestDetSuite extends DeterministicIOTestSuite {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ package cats.effect.testing.minitest

import cats.effect.IO
import scala.concurrent.duration._
import cats.implicits._
import cats.syntax.all._

object TestNondetSuite extends IOTestSuite {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package cats.effect.testing.scalatest
import cats.Functor
import cats.effect.Sync
import org.scalatest.{Assertion, Assertions, Succeeded}
import cats.implicits._
import cats.syntax.all._

/**
* Copied from FS2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package cats.effect.testing.specs2

import cats.effect.{IO, Ref, Resource}
import cats.implicits._
import cats.syntax.all._
import org.specs2.mutable.Specification

class CatsEffectSpecs extends Specification with CatsEffect with CatsEffectSpecsPlatform {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

package cats.effect.testing.utest

import cats.implicits._
import cats.syntax.all._
import cats.effect.IO
import scala.concurrent.duration._
import utest._
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

package cats.effect.testing.utest

import cats.implicits._
import cats.syntax.all._
import cats.effect.IO
import utest.{Tests, assert, test}
import scala.concurrent.duration._
Expand Down

0 comments on commit dc50ba9

Please sign in to comment.