You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
library(testthat)
e<- new.env()
class(e) <-"foo"
expect_identical(e, e)
# Error in as.vector(x, "list") : # cannot coerce type 'environment' to vector of type 'list'
But it might get fixed in R-devel...
The text was updated successfully, but these errors were encountered:
Hmmmm, this might need some fundamental changes to testthat - currently both the failure and success messages are generated regardless of which occurs.
This happens now due to some changes in R-devel:
But it might get fixed in R-devel...
The text was updated successfully, but these errors were encountered: