Skip to content

Commit d633adb

Browse files
committed
start fixing ggplot2 examples that are broken in dev version
1 parent 9ac6a0d commit d633adb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/testthat/test-ggplot-device.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ context("device")
22

33
test_that("ggplotly doesn't leave a new device open", {
44
devList1 <- dev.list()
5-
p <- ggplotly(qplot(1:10))
5+
p <- ggplotly(ggplot(mtcars) + geom_point(aes(wt, mpg)))
66
devList2 <- dev.list()
77
expect_true(length(devList1) == length(devList2))
88
})

0 commit comments

Comments
 (0)