1
0
mirror of https://github.com/msberends/AMR.git synced 2025-07-08 08:32:04 +02:00

Unit test fix

This commit is contained in:
Dr. Matthijs Berends
2022-10-19 08:14:38 +02:00
committed by GitHub
parent f203928f7e
commit fed3b6440f
4 changed files with 5 additions and 5 deletions

View File

@ -85,7 +85,7 @@ expect_inherits(x[1], "ab")
expect_inherits(x[[1]], "ab")
expect_inherits(c(x[1], x[9]), "ab")
expect_inherits(unique(x[1], x[9]), "ab")
expect_inherits(rep(x[1], x[9]), "ab")
expect_inherits(rep(x[1], 2), "ab")
expect_warning(x[1] <- "invalid code")
expect_warning(x[[1]] <- "invalid code")
expect_warning(c(x[1], "test"))