From e63925b5d32be0fdc5a6a2d32a1740cc48bcba91 Mon Sep 17 00:00:00 2001 From: damirpolat Date: Tue, 5 Dec 2023 22:40:17 -0700 Subject: [PATCH] fix: smo test fix number of lines --- tests/testthat/test_paramtest_RWeka_classif_SMO.R | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/testthat/test_paramtest_RWeka_classif_SMO.R b/tests/testthat/test_paramtest_RWeka_classif_SMO.R index b975ab4d4..fd238a0e1 100644 --- a/tests/testthat/test_paramtest_RWeka_classif_SMO.R +++ b/tests/testthat/test_paramtest_RWeka_classif_SMO.R @@ -6,7 +6,8 @@ test_that("classif.SMO train", { exclude = weka_control_args(fun) # formula and data are handled via mlr3 # mlr3 does not have the `control` argument because the parameters can be specified directly - exclude = c("formula", "data", "control", "E_poly", "L_poly", "C_poly", "C_logistic", "R_logistic", "M_logistic", exclude) + exclude = c("formula", "data", "control", "E_poly", "L_poly", "C_poly", "C_logistic", "R_logistic", "M_logistic", + exclude) paramtest = run_paramtest(learner, fun, exclude, tag = "train") expect_paramtest(paramtest) control_args = setdiff(weka_control_args(fun), c("E", "L", "C", "R", "M"))