Github user jkbradley commented on a diff in the pull request:

    https://github.com/apache/spark/pull/10741#discussion_r50901154
  
    --- Diff: 
mllib/src/test/scala/org/apache/spark/ml/feature/StopWordsRemoverSuite.scala ---
    @@ -89,4 +89,20 @@ class StopWordsRemoverSuite
           .setCaseSensitive(true)
         testDefaultReadWrite(t)
       }
    +
    +  test("StopWordsRemover output column already exists") {
    +    val outputCol = "expected"
    +    val remover = new StopWordsRemover()
    +      .setInputCol("raw")
    +      .setOutputCol(outputCol)
    +    val dataSet = sqlContext.createDataFrame(Seq(
    --- End diff --
    
    Just copy one of the datasets from an above test.  That should fix the 
error.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to