Skip to content

Commit

Permalink
reduce "-source:3.0-migration"
Browse files Browse the repository at this point in the history
  • Loading branch information
xuwei-k committed Aug 14, 2023
1 parent fd6cab8 commit d381664
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ lazy val all = crossProject(JSPlatform, JVMPlatform, NativePlatform)
.jvmSettings(notesSettings)
.settings(
effSettings,
scala3migrationOption(Test),
)
.nativeSettings(commonNativeSettings)
.dependsOn(
Expand Down
2 changes: 1 addition & 1 deletion jvm/src/test/scala/org/atnos/eff/FutureEffectSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class FutureEffectSpec(implicit ee: ExecutionEnv) extends Specification with Sca
val action = list.traverseA(i => chooseFrom[U, Int](List(1)) >> futureDelay[U, String](i.toString))

val x = action.runChoose[List].runOption.map(_.map(_.flatten)).runSequential
Await.result(x, 20.seconds) must beSome(list.map(_.toString))
Await.result(x, 20.seconds) must_== Some(list.map(_.toString))
}

def e6 = {
Expand Down

0 comments on commit d381664

Please sign in to comment.