Skip to content

Commit efa35f9

Browse files
author
Kirill Müller
committed
remove unnecessary namespace prefix from the tests
1 parent 06c7149 commit efa35f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

inst/tests/test-layer.r

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
context("Layer")
22

33
test_that("Correctly decide if a variable is a calculated aesthetic", {
4-
expect_true(ggplot2:::is_calculated_aes(aes(x=..density..)))
5-
expect_false(ggplot2:::is_calculated_aes(aes(x=a..x..b)))
6-
expect_equal(as.character(ggplot2:::strip_dots(aes(x=..density..))), "density")
4+
expect_true(is_calculated_aes(aes(x=..density..)))
5+
expect_false(is_calculated_aes(aes(x=a..x..b)))
6+
expect_equal(as.character(strip_dots(aes(x=..density..))), "density")
77
})

0 commit comments

Comments
 (0)