Skip to content

Commit

Permalink
fix tests for featureless
Browse files Browse the repository at this point in the history
  • Loading branch information
sebffischer committed Jan 26, 2024
1 parent 9b22539 commit 038fec1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testthat/test_LearnerTorchFeatureless.R
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ test_that("dataset_featureless works", {
test_that("Basic checks: Classification", {
learner = lrn("classif.torch_featureless")
expect_learner_torch(learner)
expect_set_equal(learner$properties, c("twoclass", "multiclass", "missings", "featureless"))
expect_set_equal(learner$properties, c("twoclass", "multiclass", "missings", "featureless", "bundle"))
})

test_that("LearnerTorchFeatureless works", {
Expand All @@ -28,5 +28,5 @@ test_that("LearnerTorchFeatureless works", {
test_that("Basic checks: Regression", {
learner = lrn("regr.torch_featureless")
expect_learner_torch(learner)
expect_set_equal(learner$properties, c("missings", "featureless"))
expect_set_equal(learner$properties, c("missings", "featureless", "bundle"))
})

0 comments on commit 038fec1

Please sign in to comment.