Skip to content

Commit

Permalink
Slight test fix that was exposed by this change.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Sep 15, 2023
1 parent 15d6399 commit 7e33d0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/R/run.R
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ test_that("simple", {
expect_equal(ref$s, out$d)

# Another one, just for good measure.
ref <- irlba::irlba(mat, nv=10, work=15, v=rev(v))
out <- run_irlba(mat, rev(v), number=10, work=5)
ref <- irlba::irlba(mat, nv=9, work=14, v=rev(v))
out <- run_irlba(mat, rev(v), number=9, work=5)

compare(ref$u, out$U)
compare(ref$v, out$V)
Expand Down

0 comments on commit 7e33d0b

Please sign in to comment.