Skip to content

Commit cf7ec18

Browse files
Fix a minor deprecated warning about trans arg (#6202)
1 parent 9b07550 commit cf7ec18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/testthat/test-scale-binned.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ test_that("binned limits should not compute out-of-bounds breaks", {
4747
test_that("binned scales can use limits and transformations simultaneously (#6144)", {
4848
s <- scale_x_binned(
4949
limits = function(x) x + 1,
50-
trans = transform_log10()
50+
transform = transform_log10()
5151
)
5252
s$train(c(0, 1)) # c(1, 10) in untransformed space
5353
out <- s$get_limits()

0 commit comments

Comments
 (0)