Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
markfairbanks committed Dec 26, 2024
1 parent bb9a46b commit dfd6772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testthat/test-step-subset-transmute.R
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ test_that("preserves column order", {

res <- dt %>% transmute(y, x) %>% collect()

expect_equal(names(res), c("x", "y"))
expect_equal(names(res), c("y", "x"))
})

0 comments on commit dfd6772

Please sign in to comment.