Skip to content

Commit 3ebb5cd

Browse files
committed
fix test failure
1 parent 3d7c517 commit 3ebb5cd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

R/pkg/tests/fulltests/test_mllib_classification.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ test_that("spark.svmLinear", {
8282
expect_error(collect(predictions))
8383
model <- spark.svmLinear(traindf, clicked ~ ., regParam = 0.1, handleInvalid = "skip")
8484
predictions <- predict(model, testdf)
85-
expect_equal(class(collect(predictions)$clicked[1]), "character")
85+
expect_equal(class(collect(predictions)$clicked[1]), "list")
8686

8787
})
8888

0 commit comments

Comments
 (0)