aboutsummaryrefslogtreecommitdiff
path: root/R/pkg/inst/tests
diff options
context:
space:
mode:
authorYanbo Liang <ybliang8@gmail.com>2015-12-05 16:39:01 -0800
committerShivaram Venkataraman <shivaram@cs.berkeley.edu>2015-12-05 16:39:01 -0800
commit6979edf4e1a93caafa8d286692097dd377d7616d (patch)
treec2e98565ec3a986e62b5c77b229c59dc7747888a /R/pkg/inst/tests
parent895b6c474735d7e0a38283f92292daa5c35875ee (diff)
downloadspark-6979edf4e1a93caafa8d286692097dd377d7616d.tar.gz
spark-6979edf4e1a93caafa8d286692097dd377d7616d.tar.bz2
spark-6979edf4e1a93caafa8d286692097dd377d7616d.zip
[SPARK-12115][SPARKR] Change numPartitions() to getNumPartitions() to be consistent with Scala/Python
Change ```numPartitions()``` to ```getNumPartitions()``` to be consistent with Scala/Python. <del>Note: If we can not catch up with 1.6 release, it will be breaking change for 1.7 that we also need to explain in release note.<del> cc sun-rui felixcheung shivaram Author: Yanbo Liang <ybliang8@gmail.com> Closes #10123 from yanboliang/spark-12115.
Diffstat (limited to 'R/pkg/inst/tests')
-rw-r--r--R/pkg/inst/tests/test_rdd.R10
1 files changed, 5 insertions, 5 deletions
diff --git a/R/pkg/inst/tests/test_rdd.R b/R/pkg/inst/tests/test_rdd.R
index 71aed2bb9d..7423b4f2be 100644
--- a/R/pkg/inst/tests/test_rdd.R
+++ b/R/pkg/inst/tests/test_rdd.R
@@ -28,8 +28,8 @@ intPairs <- list(list(1L, -1), list(2L, 100), list(2L, 1), list(1L, 200))
intRdd <- parallelize(sc, intPairs, 2L)
test_that("get number of partitions in RDD", {
- expect_equal(numPartitions(rdd), 2)
- expect_equal(numPartitions(intRdd), 2)
+ expect_equal(getNumPartitions(rdd), 2)
+ expect_equal(getNumPartitions(intRdd), 2)
})
test_that("first on RDD", {
@@ -304,18 +304,18 @@ test_that("repartition/coalesce on RDDs", {
# repartition
r1 <- repartition(rdd, 2)
- expect_equal(numPartitions(r1), 2L)
+ expect_equal(getNumPartitions(r1), 2L)
count <- length(collectPartition(r1, 0L))
expect_true(count >= 8 && count <= 12)
r2 <- repartition(rdd, 6)
- expect_equal(numPartitions(r2), 6L)
+ expect_equal(getNumPartitions(r2), 6L)
count <- length(collectPartition(r2, 0L))
expect_true(count >= 0 && count <= 4)
# coalesce
r3 <- coalesce(rdd, 1)
- expect_equal(numPartitions(r3), 1L)
+ expect_equal(getNumPartitions(r3), 1L)
count <- length(collectPartition(r3, 0L))
expect_equal(count, 20)
})