Skip to content

Commit 9034d53

Browse files
committed
Switch stat-sum visual test to use non-stochastic summary
1 parent db62ebe commit 9034d53

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

tests/figs/stat-sum/summary-with-crossbars-manual-grouping.svg

Lines changed: 3 additions & 3 deletions
Loading

tests/figs/stat-sum/summary-with-crossbars-no-grouping.svg

Lines changed: 3 additions & 3 deletions
Loading

tests/testthat/test-stat-sum.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ test_that("summaries are drawn correctly", {
5555
ggplot(mtcars, aes(x = cyl, y = mpg)) +
5656
geom_point() +
5757
stat_summary(
58-
fun.data = mean_cl_boot,
58+
fun.data = mean_se,
5959
colour = "red",
6060
geom = "crossbar",
6161
width = 0.2
@@ -65,7 +65,7 @@ test_that("summaries are drawn correctly", {
6565
ggplot(mtcars, aes(x = cyl, y = mpg, group = cyl)) +
6666
geom_point() +
6767
stat_summary(
68-
fun.data = mean_cl_boot,
68+
fun.data = mean_se,
6969
colour = "red",
7070
geom = "crossbar",
7171
width = 0.2

0 commit comments

Comments
 (0)