1
0
mirror of https://github.com/msberends/AMR.git synced 2025-08-19 12:22:10 +02:00

data.table

This commit is contained in:
2022-10-03 21:19:00 +02:00
parent 9cbc1d4f16
commit a62ff0a1b9
4 changed files with 6 additions and 6 deletions

View File

@@ -41,9 +41,9 @@ expect_equal(strrep(c("A", "B"), c(5, 2)), c("AAAAA", "BB"))
expect_equal(trimws(" test "), "test")
expect_equal(trimws(" test ", "l"), "test ")
expect_equal(trimws(" test ", "r"), " test")
expect_equal(trimws2(" test "), "test")
expect_equal(trimws2(" test ", "l"), "test ")
expect_equal(trimws2(" test ", "r"), " test")
expect_equal(AMR:::trimws2(" test "), "test")
expect_equal(AMR:::trimws2(" test ", "l"), "test ")
expect_equal(AMR:::trimws2(" test ", "r"), " test")
expect_warning(AMR:::generate_warning_abs_missing(c("AMP", "AMX")))
expect_warning(AMR:::generate_warning_abs_missing(c("AMP", "AMX"), any = TRUE))