aboutsummaryrefslogtreecommitdiff
path: root/R/pkg/inst/tests/test_rdd.R
diff options
context:
space:
mode:
Diffstat (limited to 'R/pkg/inst/tests/test_rdd.R')
-rw-r--r--R/pkg/inst/tests/test_rdd.R4
1 files changed, 2 insertions, 2 deletions
diff --git a/R/pkg/inst/tests/test_rdd.R b/R/pkg/inst/tests/test_rdd.R
index 4fe6538567..fc3c01d837 100644
--- a/R/pkg/inst/tests/test_rdd.R
+++ b/R/pkg/inst/tests/test_rdd.R
@@ -33,9 +33,9 @@ test_that("get number of partitions in RDD", {
})
test_that("first on RDD", {
- expect_true(first(rdd) == 1)
+ expect_equal(first(rdd), 1)
newrdd <- lapply(rdd, function(x) x + 1)
- expect_true(first(newrdd) == 2)
+ expect_equal(first(newrdd), 2)
})
test_that("count and length on RDD", {