Skip to content

Commit e2519c4

Browse files
committed
Fix typo
1 parent 16bda0a commit e2519c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/testthat/test-rowwise.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,12 +107,12 @@ test_that("rbind() works with rowwise data frames by calling bind_rows() (r-lib/
107107

108108
# With bare tibble
109109
y <- tibble(a = 5:6)
110-
out <- rbind(x, z)
110+
out <- rbind(x, y)
111111
expect_identical(out, rowwise(tibble(a = c(1:2, 5:6))))
112112

113113
# With grouped_df
114114
y <- group_by(tibble(a = 5:6), a)
115-
out <- rbind(x, z)
115+
out <- rbind(x, y)
116116
expect_identical(out, rowwise(tibble(a = c(1:2, 5:6))))
117117
})
118118

0 commit comments

Comments
 (0)