Skip to content

Commit

Permalink
Don't care about variable order in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Moohan committed Jul 25, 2024
1 parent 863c67a commit 4f14fc5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/testthat/test-get_simd_postcode.R
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ test_that("col selection works with tidyselect", {

expect_named(
get_simd_postcode(col_select = dplyr::matches("pc[78]")),
c("pc7", "pc8")
c("pc7", "pc8"),
ignore.order = TRUE
) |>
expect_message()
})

0 comments on commit 4f14fc5

Please sign in to comment.