fix bug with ML additional method tests (#142)

#139 introduced a bug which made most ML tests fail with mllib-small.yaml. This fixes those tests.
This commit is contained in:
Joseph Bradley 2018-05-08 13:23:22 -07:00 committed by Bago Amirbekian
parent be4459fe41
commit ed9bbb01a5

View File

@ -53,7 +53,7 @@ trait BenchmarkAlgorithm extends Logging {
*/
def testAdditionalMethods(
ctx: MLBenchContext,
transformer: Transformer): Map[String, () => _] = null
transformer: Transformer): Map[String, () => _] = Map.empty[String, () => _]
}
/**