Skip to content

Commit d8f2ee7

Browse files
krlmlrgithub-actions[bot]
authored andcommitted
[create-pull-request] automated change
1 parent 29145a0 commit d8f2ee7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/testthat/_snaps/subsetting.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
Condition
9898
Error in `foo[foo]`:
9999
! Can't subset columns with `foo`.
100-
x `foo` must be logical, numeric, or character, not a <tbl_df/tbl/data.frame> object.
100+
x `foo` must be logical, numeric, or character, not a <tbl_df> object.
101101
Code
102102
# # [.tbl_df is careful about row indexes
103103
foo <- tibble(x = 1:3, y = 1:3, z = 1:3)
@@ -156,7 +156,7 @@
156156
Condition
157157
Error in `foo[foo, ]`:
158158
! Can't subset rows with `foo`.
159-
x `foo` must be logical, numeric, or character, not a <tbl_df/tbl/data.frame> object.
159+
x `foo` must be logical, numeric, or character, not a <tbl_df> object.
160160
Code
161161
# # [.tbl_df is careful about column flags (#83)
162162
foo <- tibble(x = 1:10, y = 1:10, z = 1:10)
@@ -386,7 +386,7 @@
386386
Condition
387387
Error in `foo[[foo]]`:
388388
! Can't extract column with `foo`.
389-
x `foo` must be numeric or character, not a <tbl_df/tbl/data.frame> object.
389+
x `foo` must be numeric or character, not a <tbl_df> object.
390390
Code
391391
# # [[.tbl_df throws error with NA index
392392
foo <- tibble(x = 1:10, y = 1:10)
@@ -892,7 +892,7 @@
892892
Condition
893893
Error in `[[<-`:
894894
! Can't assign column with `foo`.
895-
x `foo` must be numeric or character, not a <tbl_df/tbl/data.frame> object.
895+
x `foo` must be numeric or character, not a <tbl_df> object.
896896
Code
897897
foo[[1:3, 1]] <- 1
898898
Condition
@@ -916,7 +916,7 @@
916916
Condition
917917
Error in `[[<-`:
918918
! Can't assign row with `foo`.
919-
x `foo` must be numeric or character, not a <tbl_df/tbl/data.frame> object.
919+
x `foo` must be numeric or character, not a <tbl_df> object.
920920
Code
921921
# # [[<-.tbl_df throws an error with OOB assignment
922922
df <- tibble(x = 1:2, y = x)

0 commit comments

Comments
 (0)