Skip to content

Commit

Permalink
Fix test expected value
Browse files Browse the repository at this point in the history
Now that objects are sorting correctly in all columns, largest mod is first
  • Loading branch information
katelynqueen98 authored May 17, 2024
1 parent 20ae006 commit aac8b7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testthat/test-super-partition-objects.R
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ test_that("dimensions are consistent", {
expect_equal(nrow(map_key), 4)
expect_equal(nrow(reduced_map), 3)
map_lengths <- purrr::map_int(map_key[["mapping"]], length)
expect_true(all(map_lengths == c(1, 2, 2, 3)))
expect_true(all(map_lengths == c(1, 3, 2, 2)))
index_lengths <- purrr::map_int(map_key[["indices"]], length)
expect_true(all(index_lengths == map_lengths))

Expand Down

0 comments on commit aac8b7c

Please sign in to comment.