Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mengxr committed Jul 9, 2015
1 parent f1348d6 commit 53f6ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/pkg/inst/tests/test_sparkSQL.R
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,7 @@ test_that("crosstab() on a DataFrame", {
ct <- crosstab(df, "a", "b")
ordered <- ct[order("a_b"),]
expected <- data.frame("a_b" = c("a0", "a1", "a2"), "b0" = c(1, 1, 1), "b1" = c(1, 1, 1))
assert_true(identical(expected, ordered))
expect_identical(expected, ordered)
})

unlink(parquetPath)
Expand Down

0 comments on commit 53f6ddd

Please sign in to comment.