Skip to content

Commit

Permalink
update tests which often crashes on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
schalkdaniel committed Aug 30, 2018
1 parent eec8e5a commit c677af9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/testthat/test_compboost_internal.R
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ test_that("Compboost loggs correctly", {
expect_silent({ loss.quadratic = LossQuadratic$new() })
expect_silent({ optimizer = OptimizerCoordinateDescent$new() })
expect_silent({ log.iterations = LoggerIteration$new(TRUE, iter.max) })
expect_silent({ log.time.ms = LoggerTime$new(TRUE, 50000, "microseconds") })
expect_silent({ log.time.sec = LoggerTime$new(TRUE, 2, "seconds") })
expect_silent({ log.time.min = LoggerTime$new(TRUE, 1, "minutes") })
expect_silent({ log.time.ms = LoggerTime$new(TRUE, 200000, "microseconds") })
expect_silent({ log.time.sec = LoggerTime$new(TRUE, 10, "seconds") })
expect_silent({ log.time.min = LoggerTime$new(TRUE, 10, "minutes") })
expect_silent({ log.inbag = LoggerInbagRisk$new(FALSE, loss.quadratic, 0.01) })
expect_silent({ log.oob = LoggerOobRisk$new(FALSE, loss.quadratic, 0.01, eval.oob.test, y) })
expect_silent({ logger.list = LoggerList$new() })
Expand Down

0 comments on commit c677af9

Please sign in to comment.