Skip to content

Commit

Permalink
Get the name of the function right
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkox committed Jan 31, 2024
1 parent 52f302a commit 79df8b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testthat/test-richtext.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ library(ggplot2)

test_that("geom_fit_text() plots with rich text", {

skip_if_os(c("windows", "linux"))
skip_on_os(c("windows", "linux"))

expect_doppelganger("Basic rich text", {
ggplot(animals_rich, aes(x = type, y = flies, label = animal)) +
Expand Down Expand Up @@ -60,7 +60,7 @@ test_that("geom_fit_text() plots with rich text", {

test_that("geom_bar_text() plots with rich text", {

skip_if_os(c("windows", "linux"))
skip_on_os(c("windows", "linux"))

expect_doppelganger("Basic bar plot with rich text", {
ggplot(beverages_rich, aes(x = beverage, y = proportion, label = ingredient,
Expand Down

0 comments on commit 79df8b9

Please sign in to comment.