We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ad0080 commit 87f189bCopy full SHA for 87f189b
inst/tests/tests.Rraw
@@ -20656,10 +20656,10 @@ test(2295.3, is.data.table(d2))
20656
# Ensure against regression noted in #6725
20657
x = data.frame(a=1)
20658
e = environment()
20659
-foo = function() {
20660
- setDT(get('x', envir=e))
+foo = function(nm, env) {
+ setDT(get(nm, envir=env))
20661
}
20662
-foo()
+foo('x', e)
20663
test(2295.4, is.data.table(x))
20664
20665
# #6588: .checkTypos used to give arbitrary strings to stopf as the first argument
0 commit comments