Skip to content

Commit 28fb98c

Browse files
authored
[create-pull-request] automated change
1 parent 4f988b5 commit 28fb98c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/testthat/_snaps/vignette-invariants/invariants.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1045,6 +1045,7 @@ df[10, ]
10451045
tbl[10, ]
10461046
#> Warning: The `i` argument of `[.tbl_df` must lie in [0, rows] if positive, as of tibble 3.0.0.
10471047
#> i Use `NA_integer_` as row index to obtain a row full of `NA` values.
1048+
#> Call `lifecycle::last_lifecycle_warnings()` to see where this warning was generated.
10481049
#> # A tibble: 1 x 3
10491050
#> n c li
10501051
#> <int> <chr> <list>
@@ -1065,6 +1066,7 @@ df["x", ]
10651066
tbl["x", ]
10661067
#> Warning: The `i` argument of `[.tbl_df` must use valid row names as of tibble 3.0.0.
10671068
#> i Use `NA_integer_` as row index to obtain a row full of `NA` values.
1069+
#> Call `lifecycle::last_lifecycle_warnings()` to see where this warning was generated.
10681070
#> # A tibble: 1 x 3
10691071
#> n c li
10701072
#> <int> <chr> <list>
@@ -3633,6 +3635,7 @@ with_df(df[as.character(-(1:3)), ] <- df[1, ])
36333635
with_tbl(tbl[as.character(-(1:3)), ] <- tbl[1, ])
36343636
#> Warning: The `i` argument of `[.tbl_df` must use valid row names as of tibble 3.0.0.
36353637
#> i Use `NA_integer_` as row index to obtain a row full of `NA` values.
3638+
#> Call `lifecycle::last_lifecycle_warnings()` to see where this warning was generated.
36363639
#> Error in `[<-`:
36373640
#> ! Can't use NA as row index in a tibble for assignment.
36383641
```
@@ -3655,6 +3658,7 @@ with_df(df[as.character(3:5), ] <- df[1, ])
36553658
with_tbl(tbl[as.character(3:5), ] <- tbl[1, ])
36563659
#> Warning: The `i` argument of `[.tbl_df` must use valid row names as of tibble 3.0.0.
36573660
#> i Use `NA_integer_` as row index to obtain a row full of `NA` values.
3661+
#> Call `lifecycle::last_lifecycle_warnings()` to see where this warning was generated.
36583662
#> Error in `[<-`:
36593663
#> ! Can't use NA as row index in a tibble for assignment.
36603664
```
@@ -3679,6 +3683,7 @@ with_df(df[as.character(-(3:5)), ] <- df[1, ])
36793683
with_tbl(tbl[as.character(-(3:5)), ] <- tbl[1, ])
36803684
#> Warning: The `i` argument of `[.tbl_df` must use valid row names as of tibble 3.0.0.
36813685
#> i Use `NA_integer_` as row index to obtain a row full of `NA` values.
3686+
#> Call `lifecycle::last_lifecycle_warnings()` to see where this warning was generated.
36823687
#> Error in `[<-`:
36833688
#> ! Can't use NA as row index in a tibble for assignment.
36843689
```

0 commit comments

Comments
 (0)