Skip to content

Commit

Permalink
Revert "More docs"
Browse files Browse the repository at this point in the history
This reverts commit 24a7f13.
  • Loading branch information
hlin09 committed Feb 22, 2015
1 parent 57e005b commit 8e4b3da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/inst/tests/test_rdd.R
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ test_that("several transformations on RDD (a benchmark on PipelinedRDD)", {
})
rdd2 <- lapply(rdd2, function(x) x + x)
actual <- collect(rdd2)
expected <- list(24, 24, 24, 24, 24,
168, 170, 172, 174, 176)
expect_equal(actual, expected))
expected <-
expect_equal(actual, list(24, 24, 24, 24, 24,
168, 170, 172, 174, 176))
})

test_that("PipelinedRDD support actions: cache(), persist(), unpersist(), checkpoint()", {
Expand Down

0 comments on commit 8e4b3da

Please sign in to comment.