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.Dismiss alert
At the time of proposing #3758, I think it works fine, but currently it has two problem
It fails on local (i.e. when devtools::test())
It does nothing on GitHub Actions CI (i.e. when R CMD check) because of some difference of the path to R files.
For 1., I'm seeing this on my local.
─ Failure (test-prohibited-functions.R:50:3): do not use data.frame(), use `data_frame()` or `new_data_frame()` ─
sum(data.frames) not equal to 0.
1/1 mismatches
[1] 12 - 0 == 12
because some code is actually using data.frame with base:: prefix.
At the time of proposing #3758, I think it works fine, but currently it has two problem
devtools::test()
)R CMD check
) because of some difference of the path to R files.For 1., I'm seeing this on my local.
because some code is actually using
data.frame
withbase::
prefix.Created on 2021-04-24 by the reprex package (v2.0.0)
I'm sorry I didn't notice this...
The text was updated successfully, but these errors were encountered: