Skip to content

Commit

Permalink
Oops should be 'less than OR EQUAL TO'
Browse files Browse the repository at this point in the history
  • Loading branch information
jennybc committed May 5, 2020
1 parent e9115d3 commit a03a0af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testthat/test-drive_find.R
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ test_that("drive_find() tolerates specification of pageSize", {
expect_silent({
out <- drive_find(n_max = 10, pageSize = 5, verbose = FALSE)
})
expect_lt(nrow(out), 10)
expect_lte(nrow(out), 10)
expect_lt(anyDuplicated(out$id), 1)
})

Expand Down

0 comments on commit a03a0af

Please sign in to comment.