We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59928fc commit 2646cf6Copy full SHA for 2646cf6
tests/testthat/test-ggplot-point.R
@@ -49,6 +49,6 @@ test_that("tickvals/ticktext are appropriately boxed", {
49
d <- data.frame(x = factor(75), y = 10)
50
p <- qplot(x, y, data = d)
51
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"]')
+ expect_true(plotly:::to_JSON(info$layout$xaxis$tickvals) == '[1]')
+ expect_true(plotly:::to_JSON(info$layout$xaxis$ticktext) == '["75"]')
54
})
0 commit comments