Skip to content

Commit

Permalink
Unignore tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mattharder91 committed May 9, 2024
1 parent e2746ca commit 1ce0e90
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spark/src/test/scala/org/apache/comet/CometCastSuite.scala
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ class CometCastSuite extends CometTestBase with AdaptiveSparkPlanHelper {
castTest(generateBytes(), DataTypes.StringType)
}

ignore("cast ByteType to BinaryType") {
test("cast ByteType to BinaryType") {
castTest(generateBytes(), DataTypes.BinaryType)
}

Expand Down Expand Up @@ -195,7 +195,7 @@ class CometCastSuite extends CometTestBase with AdaptiveSparkPlanHelper {
castTest(generateShorts(), DataTypes.StringType)
}

ignore("cast ShortType to BinaryType") {
test("cast ShortType to BinaryType") {
castTest(generateShorts(), DataTypes.BinaryType)
}

Expand Down Expand Up @@ -241,7 +241,7 @@ class CometCastSuite extends CometTestBase with AdaptiveSparkPlanHelper {
castTest(generateInts(), DataTypes.StringType)
}

ignore("cast IntegerType to BinaryType") {
test("cast IntegerType to BinaryType") {
castTest(generateInts(), DataTypes.BinaryType)
}

Expand Down Expand Up @@ -288,7 +288,7 @@ class CometCastSuite extends CometTestBase with AdaptiveSparkPlanHelper {
castTest(generateLongs(), DataTypes.StringType)
}

ignore("cast LongType to BinaryType") {
test("cast LongType to BinaryType") {
castTest(generateLongs(), DataTypes.BinaryType)
}

Expand Down

0 comments on commit 1ce0e90

Please sign in to comment.