Skip to content

Commit 7b7d7c4

Browse files
committed
remove tests for removed methods
1 parent 33c2c15 commit 7b7d7c4

File tree

2 files changed

+0
-24
lines changed

2 files changed

+0
-24
lines changed

sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/expressions/ExpressionEvaluationSuite.scala

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1253,18 +1253,6 @@ class ExpressionEvaluationSuite extends ExpressionEvaluationBaseSuite {
12531253
unaryMathFunctionEvaluation[Double](Signum, math.signum)
12541254
}
12551255

1256-
test("isignum") {
1257-
unaryMathFunctionEvaluation[Int](ISignum, math.signum, (-5 to 5))
1258-
}
1259-
1260-
test("fsignum") {
1261-
unaryMathFunctionEvaluation[Float](FSignum, math.signum, (-5 to 5).map(_.toFloat))
1262-
}
1263-
1264-
test("lsignum") {
1265-
unaryMathFunctionEvaluation[Long](LSignum, math.signum, (5 to 5).map(_.toLong))
1266-
}
1267-
12681256
test("log") {
12691257
unaryMathFunctionEvaluation(Log, math.log, (0 to 20).map(_ * 0.1))
12701258
unaryMathFunctionEvaluation(Log, math.log, (-5 to -1).map(_ * 0.1), true)

sql/core/src/test/scala/org/apache/spark/sql/MathExpressionsSuite.scala

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -194,18 +194,6 @@ class MathExpressionsSuite extends QueryTest {
194194
testOneToOneMathFunction[Double](signum, math.signum)
195195
}
196196

197-
test("isignum") {
198-
testOneToOneMathFunction[Int](isignum, math.signum)
199-
}
200-
201-
test("fsignum") {
202-
testOneToOneMathFunction[Float](fsignum, math.signum)
203-
}
204-
205-
test("lsignum") {
206-
testOneToOneMathFunction[Long](lsignum, math.signum)
207-
}
208-
209197
test("pow") {
210198
testTwoToOneMathFunction(pow, pow, math.pow)
211199
}

0 commit comments

Comments
 (0)