Skip to content

Commit 4562458

Browse files
committed
expect_message -> expect_snapshot
1 parent ebc0e73 commit 4562458

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

tests/testthat/_snaps/boost_tree.md

+15
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,21 @@
2323
Error in `boost_tree()`:
2424
! "bogus" is not a known mode for model `boost_tree()`.
2525

26+
---
27+
28+
Code
29+
translate(boost_tree(mode = "classification"), engine = NULL)
30+
Message
31+
Used `engine = 'xgboost'` for translation.
32+
Output
33+
Boosted Tree Model Specification (classification)
34+
35+
Computational engine: xgboost
36+
37+
Model fit template:
38+
parsnip::xgb_train(x = missing_arg(), y = missing_arg(), weights = missing_arg(),
39+
nthread = 1, verbose = 0)
40+
2641
---
2742

2843
Code

tests/testthat/test-boost_tree.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ test_that('updating', {
1212

1313
test_that('bad input', {
1414
expect_snapshot(error = TRUE, boost_tree(mode = "bogus"))
15-
expect_message(translate(boost_tree(mode = "classification"), engine = NULL))
15+
expect_snapshot(translate(boost_tree(mode = "classification"), engine = NULL))
1616
expect_snapshot(error = TRUE, translate(boost_tree(formula = y ~ x)))
1717
})
1818

0 commit comments

Comments
 (0)