Skip to content

Commit

Permalink
Add missing nowarn
Browse files Browse the repository at this point in the history
  • Loading branch information
Michel Davit committed Jan 3, 2024
1 parent 421065b commit f58bcde
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import org.scalacheck._
import java.net.URI
import java.time._
import java.time.format.DateTimeFormatter
import scala.annotation.nowarn
import scala.jdk.CollectionConverters._
import scala.reflect._

Expand All @@ -43,7 +44,7 @@ class TableRowTypeSuite extends MagnolifySuite {
private def test[T: Arbitrary: ClassTag](implicit t: TableRowType[T], eq: Eq[T]): Unit = {
val tpe = ensureSerializable(t)
// FIXME: test schema
tpe.schema: Unit
tpe.schema: Unit @nowarn
property(className[T]) {
Prop.forAll { (t: T) =>
val r = tpe(t)
Expand Down

0 comments on commit f58bcde

Please sign in to comment.