Skip to content

Commit 3337d85

Browse files
committed
Revert unrelated test file to latest commit on master
1 parent 91a5a45 commit 3337d85

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/testthat/test-ggplot-area.R

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ context("Area")
33
huron <- data.frame(year=1875:1972, level=as.vector(LakeHuron))
44
huron$decade <- plyr::round_any(huron$year, 10, floor)
55

6-
ar <- ggplot(huron) +
7-
geom_area(aes(x=year, y=level))
6+
ar <- ggplot(huron) + geom_area(aes(x=year, y=level))
87
L <- gg2list(ar)
98

109
test_that("sanity check for geom_area", {
@@ -18,8 +17,7 @@ test_that("sanity check for geom_area", {
1817
save_outputs(ar, "area")
1918

2019
# Test alpha transparency in fill color
21-
gg <- ggplot(huron) +
22-
geom_area(aes(x=year, y=level), alpha=0.4)
20+
gg <- ggplot(huron) + geom_area(aes(x=year, y=level), alpha=0.4)
2321
L <- gg2list(gg)
2422

2523
test_that("transparency alpha in geom_area is converted", {

0 commit comments

Comments
 (0)