Removed unnecessary concantenations

This commit is contained in:
Waldir Leoncio 2021-11-10 14:55:11 +01:00
parent 8b0d1c3cc3
commit c5cf0edd1d
5 changed files with 8 additions and 7 deletions

View file

@ -139,7 +139,7 @@ test_that("isempty works as expected", {
B <- matrix(rep(NA, 4), 2)
C <- matrix(rep(0, 4), 2)
cat1 <- as.factor(c(NA, NA))
cat2 <- as.factor(c())
cat2 <- factor()
str1 <- matrix(rep("", 3))
expect_true(isempty(A))
expect_false(isempty(B))