File tree 6 files changed +11
-11
lines changed
6 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 15
15
Error in `arrange()`:
16
16
! Problem with the implicit `transmute()` step.
17
17
x Problem while computing `..1 = y`.
18
- Caused by error:
18
+ Caused by error in `mask$eval_all_mutate()` :
19
19
! object 'y' not found
20
20
Code
21
21
(expect_error(tibble(x = 1) %>% arrange(rep(x, 2))))
Original file line number Diff line number Diff line change 31
31
! Problem adding computed columns.
32
32
Caused by error in `mutate()`:
33
33
! Problem while computing `y = a + 1`.
34
- Caused by error:
34
+ Caused by error in `mask$eval_all_mutate()` :
35
35
! object 'a' not found
36
36
Original file line number Diff line number Diff line change 99
99
<error/rlang_error>
100
100
Error in `filter()`:
101
101
! Problem while computing `..1 = _x`.
102
- Caused by error:
102
+ Caused by error in `mask$eval_all_filter()` :
103
103
! object '_x' not found
104
104
Code
105
105
(expect_error(mtcars %>% group_by(cyl) %>% filter(`_x`)))
108
108
Error in `filter()`:
109
109
! Problem while computing `..1 = _x`.
110
110
i The error occurred in group 1: cyl = 4.
111
- Caused by error:
111
+ Caused by error in `mask$eval_all_filter()` :
112
112
! object '_x' not found
113
113
Code
114
114
(expect_error(filter(mtcars, x = 1)))
148
148
<error/rlang_error>
149
149
Error in `filter()`:
150
150
! Problem while computing `..1 = stop("{")`.
151
- Caused by error:
151
+ Caused by error in `mask$eval_all_filter()` :
152
152
! {
153
153
Code
154
154
data.frame(x = 1, y = 1) %>% filter(across(everything(), ~ .x > 0))
Original file line number Diff line number Diff line change 46
46
! Problem adding computed columns.
47
47
Caused by error in `mutate()`:
48
48
! Problem while computing `z = a + 1`.
49
- Caused by error:
49
+ Caused by error in `mask$eval_all_mutate()` :
50
50
! object 'a' not found
51
51
Original file line number Diff line number Diff line change 7
7
<error/dplyr:::mutate_error>
8
8
Error in `mutate()`:
9
9
! Problem while computing `a = sum(y)`.
10
- Caused by error:
10
+ Caused by error in `mask$eval_all_mutate()` :
11
11
! object 'y' not found
12
12
Code
13
13
(expect_error(tbl %>% group_by(x) %>% mutate(y = NULL, a = sum(y))))
16
16
Error in `mutate()`:
17
17
! Problem while computing `a = sum(y)`.
18
18
i The error occurred in group 1: x = 1.
19
- Caused by error:
19
+ Caused by error in `mask$eval_all_mutate()` :
20
20
! object 'y' not found
21
21
Code
22
22
(expect_error(tibble(x = 1) %>% mutate(y = mean)))
153
153
<error/dplyr:::mutate_error>
154
154
Error in `mutate()`:
155
155
! Problem while computing `..1 = stop("{")`.
156
- Caused by error:
156
+ Caused by error in `mask$eval_all_mutate()` :
157
157
! {
158
158
Original file line number Diff line number Diff line change 167
167
<error/rlang_error>
168
168
Error in `summarise()`:
169
169
! Problem while computing `..1 = stop("{")`.
170
- Caused by error:
170
+ Caused by error in `mask$eval_all_summarise()` :
171
171
! {
172
172
Code
173
173
(expect_error(tibble(a = 1, b = "{value:1, unit:a}") %>% group_by(b) %>%
177
177
Error in `summarise()`:
178
178
! Problem while computing `a = stop("!")`.
179
179
i The error occurred in group 1: b = "{value:1, unit:a}".
180
- Caused by error:
180
+ Caused by error in `mask$eval_all_summarise()` :
181
181
! !
182
182
You can’t perform that action at this time.
0 commit comments