Skip to content

Commit 2646cf6

Browse files
committed
fix silly test mistake
1 parent 59928fc commit 2646cf6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/testthat/test-ggplot-point.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ test_that("tickvals/ticktext are appropriately boxed", {
4949
d <- data.frame(x = factor(75), y = 10)
5050
p <- qplot(x, y, data = d)
5151
info <- save_outputs(p, "point-box")
52-
expect_true(plotly::to_JSON(info$layout$xaxis$tickvals) == '[1]')
53-
expect_true(plotly::to_JSON(info$layout$xaxis$ticktext) == '["75"]')
52+
expect_true(plotly:::to_JSON(info$layout$xaxis$tickvals) == '[1]')
53+
expect_true(plotly:::to_JSON(info$layout$xaxis$ticktext) == '["75"]')
5454
})

0 commit comments

Comments
 (0)