Skip to content

Commit 9ef335d

Browse files
committed
fix build failure
1 parent 33e589d commit 9ef335d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/ObjectHashAggregateSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ class ObjectHashAggregateSuite
416416
actual.zip(expected).foreach { case (lhs: Row, rhs: Row) =>
417417
assert(lhs.length == rhs.length)
418418
lhs.toSeq.zip(rhs.toSeq).foreach {
419-
case (a: Double, b: Double) => checkResult(a, b +- tolerance, DoubleType)
419+
case (a: Double, b: Double) => checkResult(a, b +- tolerance, DoubleType, false)
420420
case (a, b) => a == b
421421
}
422422
}

0 commit comments

Comments
 (0)