Skip to content

Commit

Permalink
[185606211]: Make test more precise so changes to project settings do…
Browse files Browse the repository at this point in the history
…n't cause failures
  • Loading branch information
gergness committed Jul 26, 2023
1 parent e7fb391 commit 0f22ca9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/testthat/test-shoji.R
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ with_test_authentication({
expect_identical(ds, refresh(ds))
ds2 <- ds
ds2@body$name <- "something else"
expect_false(identical(ds2, ds))
expect_false(identical(ds2, refresh(ds2)))
expect_identical(refresh(ds2), ds)
expect_false(identical(ds2@body$name, ds@body$name))
expect_false(identical(ds2@body$name, refresh(ds2)@body$name))
expect_identical(refresh(ds2)@body$name, ds@body$name)
})
})

0 comments on commit 0f22ca9

Please sign in to comment.