Skip to content

Commit

Permalink
chore: run hooks (#118)
Browse files Browse the repository at this point in the history
  • Loading branch information
m-muecke authored Jun 30, 2024
1 parent e89fcff commit 280f49c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,3 @@ vision behind the project.
## Acknowledgements

The development of this R-package was supported by Roche Diagonstics R&D.

4 changes: 2 additions & 2 deletions tests/testthat/test_PipeOpFDASmooth.R
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ test_that("PipeOpFDASmooth", {
observed_train = po_smooth$train(list(task2))[[1L]]$data(cols = "cca")[[1L]]
observed_predict = po_smooth$predict(list(task2))[[1L]]$data(cols = "cca")[[1L]]

expected = suppressMessages(invoke(tf::tf_smooth, x = x, method = method, .args = args))
expected = suppressMessages(invoke(tf::tf_smooth, x = x, method = method, .args = args))

expect_equal(observed_train, expected)
expect_equal(observed_predict, expected)
Expand All @@ -30,7 +30,7 @@ test_that("PipeOpFDASmooth", {
observed_train = po_smooth$train(list(task1))[[1L]]$data(cols = "NIR")[[1L]]
observed_predict = po_smooth$predict(list(task1))[[1L]]$data(cols = "NIR")[[1L]]

expected = suppressMessages(invoke(tf::tf_smooth, x = x, method = method, .args = args))
expected = suppressMessages(invoke(tf::tf_smooth, x = x, method = method, .args = args))

expect_equal(observed_train, expected)
expect_equal(observed_predict, expected)
Expand Down

0 comments on commit 280f49c

Please sign in to comment.