Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
As of yesterday, the development version of R preserves names in its implementation of `setdiff` (and other set-like operations). This has changed the behaviour of `root_list_unknown_packets` to also preserves names, which broke some tests that were a little too strict about it. ``` $ docker run -it rocker/r-ver:devel R -s -e 'dput(setdiff(c(a=1), NULL))' c(a = 1) $ docker run -it rocker/r-ver:4.4 R -s -e 'dput(setdiff(c(a=1), NULL))' 1 ``` See r-devel/r-svn@982288a for the offending upstream change.
- Loading branch information