Skip to content

Commit

Permalink
Snapshot updates for R-CMD-check-base (null) (#120)
Browse files Browse the repository at this point in the history
Co-authored-by: krlmlr <[email protected]>
  • Loading branch information
github-actions[bot] and krlmlr authored Mar 10, 2024
1 parent ee6291b commit 6d594e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/testthat/_snaps/telemetry.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@

Code
tibble(a = 1:3, b = 4:6) %>% as_duckplyr_df() %>% anti_join(tibble(a = 1:3, b = 4:
6), by = "a", copy = TRUE, na_matches = "na")
6), by = "a", copy = FALSE, na_matches = "na")
Condition
Error in `rel_try()`:
! anti_join: {"version":"0.3.1","message":"Error in anti_join","name":"anti_join","x":{"...1":"integer","...2":"integer"},"y":{"...1":"integer","...2":"integer"},"args":{"by":{"condition":"==","filter":"none","x":["...1"],"y":["...1"]},"copy":true,"na_matches":"na"}}
! anti_join: {"version":"0.3.1","message":"Error in anti_join","name":"anti_join","x":{"...1":"integer","...2":"integer"},"y":{"...1":"integer","...2":"integer"},"args":{"by":{"condition":"==","filter":"none","x":["...1"],"y":["...1"]},"copy":false,"na_matches":"na"}}

---

Code
tibble(a = 1:3, b = 4:6) %>% as_duckplyr_df() %>% anti_join(tibble(a = 1:3, b = 4:
6), by = c(a = "b"), copy = TRUE, na_matches = "na")
6), by = c(a = "b"), copy = FALSE, na_matches = "na")
Condition
Error in `rel_try()`:
! anti_join: {"version":"0.3.1","message":"Error in anti_join","name":"anti_join","x":{"...1":"integer","...2":"integer"},"y":{"...1":"integer","...2":"integer"},"args":{"by":{"condition":"==","filter":"none","x":["...1"],"y":["...2"]},"copy":true,"na_matches":"na"}}
! anti_join: {"version":"0.3.1","message":"Error in anti_join","name":"anti_join","x":{"...1":"integer","...2":"integer"},"y":{"...1":"integer","...2":"integer"},"args":{"by":{"condition":"==","filter":"none","x":["...1"],"y":["...2"]},"copy":false,"na_matches":"na"}}

---

Expand Down

0 comments on commit 6d594e5

Please sign in to comment.