diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2019-10-31 11:47:23 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2019-10-31 11:47:23 +0100 |
commit | 99947961be1cf0a7eed80426bc3d8cc6daa6d106 (patch) | |
tree | 211d0400cc2fc4990a5e36f877273dde14549578 /tests/testthat/test_residuals.R | |
parent | 669447c2a4581a4c8dba18ab40ba6938a42b8267 (diff) |
Reorganize tests to reduce time on winbuilder
Diffstat (limited to 'tests/testthat/test_residuals.R')
-rw-r--r-- | tests/testthat/test_residuals.R | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/testthat/test_residuals.R b/tests/testthat/test_residuals.R index 275b33b9..35a143f6 100644 --- a/tests/testthat/test_residuals.R +++ b/tests/testthat/test_residuals.R @@ -4,5 +4,7 @@ test_that("Residuals are correctly returned", { f <- fits[["FOMC", "FOCUS_C"]] expect_equal(residuals(f)[1:3], c(-0.7748906, 2.7090589, -1.9451989)) - expect_equivalent(residuals(f_tc_2, standardized = TRUE)[1:3], c(0.52579103, 0.40714911, 1.66394233), tolerance = 0.0001) + expect_equivalent( + residuals(f, standardized = TRUE)[1:3], + c(-0.4171812, 1.4584875, -1.0472450), tolerance = 0.0001) }) |