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 be2d57c commit dd29d4fCopy full SHA for dd29d4f
tests/testthat/test-ggplot-bar.R
@@ -73,9 +73,8 @@ test_that("Very basic bar graph", {
73
geom_bar(stat="identity")
74
info <- expect_traces(gg, 1, "nocolor")
75
for(tr in info$traces){
76
- expect_null(tr$marker$color)
77
- expect_null(tr$marker$line$color)
78
- expect_null(tr$marker$line$width)
+ expect_true(is.na(l$data[[1]]$marker$color))
+ expect_null(tr$marker$line)
79
expect_false(tr$showlegend)
80
}
81
expect_null(info$layout$annotations)
0 commit comments