Skip to content

Commit

Permalink
chore: fix flaky serialization fuzzing test
Browse files Browse the repository at this point in the history
  • Loading branch information
mhamilton723 committed Aug 23, 2021
1 parent f5b9c5e commit fdf7562
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@ class TagImageSuite extends TransformerFuzzing[TagImage] with CognitiveKey with
}

override def assertDFEq(df1: DataFrame, df2: DataFrame)(implicit eq: Equality[DataFrame]): Unit = {
super.assertDFEq(df1.select("tags.tags"), df2.select("tags.tags"))(eq)
super.assertDFEq(df1.select("tags.tags.name"), df2.select("tags.tags.name"))(eq)
}

override def testObjects(): Seq[TestObject[TagImage]] =
Expand Down

0 comments on commit fdf7562

Please sign in to comment.