aboutsummaryrefslogtreecommitdiff
path: root/R/pkg/inst/tests/testthat/test_context.R
diff options
context:
space:
mode:
Diffstat (limited to 'R/pkg/inst/tests/testthat/test_context.R')
-rw-r--r--R/pkg/inst/tests/testthat/test_context.R6
1 files changed, 3 insertions, 3 deletions
diff --git a/R/pkg/inst/tests/testthat/test_context.R b/R/pkg/inst/tests/testthat/test_context.R
index f123187adf..b149818ff4 100644
--- a/R/pkg/inst/tests/testthat/test_context.R
+++ b/R/pkg/inst/tests/testthat/test_context.R
@@ -107,8 +107,8 @@ test_that("job group functions can be called", {
})
test_that("utility function can be called", {
- sc <- sparkR.sparkContext()
- setLogLevel(sc, "ERROR")
+ sparkR.sparkContext()
+ setLogLevel("ERROR")
sparkR.session.stop()
})
@@ -161,7 +161,7 @@ test_that("sparkJars sparkPackages as comma-separated strings", {
test_that("spark.lapply should perform simple transforms", {
sc <- sparkR.sparkContext()
- doubled <- spark.lapply(sc, 1:10, function(x) { 2 * x })
+ doubled <- spark.lapply(1:10, function(x) { 2 * x })
expect_equal(doubled, as.list(2 * 1:10))
sparkR.session.stop()
})