Skip to content

Commit

Permalink
Suppress warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Bisaloo committed Jun 22, 2021
1 parent 4df137d commit dd2cf86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testthat/test_parsers.R
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,12 @@ test_that("OceanOptics others", {
# ?as.POSIXct, "invalid values are most commonly treated as UTC, on some
# platforms with a warning."
expect_known_hash(
lr_parse_jaz(test.file("non_english", "OO_comma.txt")),
suppressWarnings(lr_parse_jaz(test.file("non_english", "OO_comma.txt"))),
"5035522e53"
)

expect_known_hash(
expect_silent(lr_parse_jaz(test.file("non_english", "OceanView_nonEN.txt"))),
suppressWarnings(lr_parse_jaz(test.file("non_english", "OceanView_nonEN.txt"))),
"81391ae27d"
)

Expand Down

0 comments on commit dd2cf86

Please sign in to comment.