aboutsummaryrefslogtreecommitdiff
path: root/R/pkg/inst/tests/testthat/test_Serde.R
diff options
context:
space:
mode:
Diffstat (limited to 'R/pkg/inst/tests/testthat/test_Serde.R')
-rw-r--r--R/pkg/inst/tests/testthat/test_Serde.R4
1 files changed, 3 insertions, 1 deletions
diff --git a/R/pkg/inst/tests/testthat/test_Serde.R b/R/pkg/inst/tests/testthat/test_Serde.R
index 96fb6dda26..b5f6f1b54f 100644
--- a/R/pkg/inst/tests/testthat/test_Serde.R
+++ b/R/pkg/inst/tests/testthat/test_Serde.R
@@ -17,7 +17,7 @@
context("SerDe functionality")
-sparkSession <- sparkR.session()
+sparkSession <- sparkR.session(enableHiveSupport = FALSE)
test_that("SerDe of primitive types", {
x <- callJStatic("SparkRHandler", "echo", 1L)
@@ -75,3 +75,5 @@ test_that("SerDe of list of lists", {
y <- callJStatic("SparkRHandler", "echo", x)
expect_equal(x, y)
})
+
+sparkR.session.stop()