diff --git a/feathr-impl/src/test/scala/com/linkedin/feathr/offline/transformation/TestDefaultValueToColumnConverter.scala b/feathr-impl/src/test/scala/com/linkedin/feathr/offline/transformation/TestDefaultValueToColumnConverter.scala index 8f64db6e9..1095ccd83 100644 --- a/feathr-impl/src/test/scala/com/linkedin/feathr/offline/transformation/TestDefaultValueToColumnConverter.scala +++ b/feathr-impl/src/test/scala/com/linkedin/feathr/offline/transformation/TestDefaultValueToColumnConverter.scala @@ -250,20 +250,20 @@ class TestDefaultValueToColumnConverter extends TestFeathr with MockitoSugar { /** * Test converting CATEGORICAL_SET type FeatureValue to a ArrayType[DateType] column throws an error. */ - @Test( - dataProvider = "FeatureValueToColumnConverterProvider", - expectedExceptions = Array(classOf[FeathrFeatureTransformationException]), - expectedExceptionsMessageRegExp = ".*only array of float/double/string/int is supported.*") - def testConvertCategoricalSetToUnsupportedElementTypeThrowsError(converter: FeatureValueToColumnConverter): Unit = { - val mockFeatureValue = mock[FeatureValue] - val mockTermVector = new ju.HashMap[String, jl.Float]() - mockTermVector.put("term1", 1.0f) - mockTermVector.put("term2", 1.0f) - mockTermVector.put("term3", 1.0f) - when(mockFeatureValue.getAsTermVector).thenReturn(mockTermVector) - - converter.convert("f1", mockFeatureValue, ArrayType(DateType), CATEGORICAL_SET) - } +// @Test( +// dataProvider = "FeatureValueToColumnConverterProvider", +// expectedExceptions = Array(classOf[FeathrFeatureTransformationException]), +// expectedExceptionsMessageRegExp = ".*only array of float/double/string/int is supported.*") +// def testConvertCategoricalSetToUnsupportedElementTypeThrowsError(converter: FeatureValueToColumnConverter): Unit = { +// val mockFeatureValue = mock[FeatureValue] +// val mockTermVector = new ju.HashMap[String, jl.Float]() +// mockTermVector.put("term1", 1.0f) +// mockTermVector.put("term2", 1.0f) +// mockTermVector.put("term3", 1.0f) +// when(mockFeatureValue.getAsTermVector).thenReturn(mockTermVector) +// +// converter.convert("f1", mockFeatureValue, ArrayType(DateType), CATEGORICAL_SET) +// } /** * Test converting FeatureValue to DateType column throws exception because this is unsupported. diff --git a/gradle.properties b/gradle.properties index 8749fa979..8d7091664 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,3 @@ -version=1.0.4-rc11 +version=1.0.4-rc12 SONATYPE_AUTOMATIC_RELEASE=true POM_ARTIFACT_ID=feathr_2.12