Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix tests to account for .n being a factor in result of rdply
  • Loading branch information
Kirill Müller committed Jan 6, 2014
1 parent 88d8748 commit 42c7c28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inst/tests/test-rply.r
Expand Up @@ -113,7 +113,7 @@ test_that("Side effects for rdply", {
if (n == 0) {
exp_res <- data.frame()
} else {
exp_res <- data.frame(.n = 1L:n, i = 1L:n)
exp_res <- data.frame(.n = factor(1L:n, levels = 1L:n), i = 1L:n)
}

i <- 0
Expand Down

0 comments on commit 42c7c28

Please sign in to comment.