Skip to content

Commit

Permalink
update snapshots
Browse files Browse the repository at this point in the history
presumably due to changes in {testthat}
  • Loading branch information
dpprdan committed Dec 26, 2024
1 parent e88657b commit 9dfcdb8
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 13 deletions.
2 changes: 1 addition & 1 deletion tests/testthat/_snaps/deprecated.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

Code
opencage_key(quiet = FALSE)
Message <simpleMessage>
Message
Using OpenCage API Key from envvar OPENCAGE_KEY

30 changes: 18 additions & 12 deletions tests/testthat/_snaps/oc_check_query.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,41 +2,47 @@

Code
oc_check_between(symbol, 0, 10)
Error <simpleError>
Every `symbol` must be between 0 and 10.
Condition
Error:
! Every `symbol` must be between 0 and 10.

---

Code
oc_check_between(symbol, 11.0001, 11.0002)
Error <simpleError>
Every `symbol` must be between 11.0001 and 11.0002.
Condition
Error:
! Every `symbol` must be between 11.0001 and 11.0002.

---

Code
oc_check_between(symbol, 0L, 10L)
Error <simpleError>
Every `symbol` must be between 0 and 10.
Condition
Error:
! Every `symbol` must be between 0 and 10.

---

Code
oc_check_between(symbol, 11.0001, 11.0002)
Error <simpleError>
Every `symbol` must be between 11.0001 and 11.0002.
Condition
Error:
! Every `symbol` must be between 11.0001 and 11.0002.

---

Code
oc_check_between(symbol, 0, 11)
Error <simpleError>
Every `symbol` must be numeric.
Condition
Error:
! Every `symbol` must be numeric.

---

Code
oc_check_between(symbol, 0, 11)
Error <simpleError>
Every `symbol` must be numeric.
Condition
Error:
! Every `symbol` must be numeric.

0 comments on commit 9dfcdb8

Please sign in to comment.