Skip to content

Commit

Permalink
Fix a lint
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau-lilly committed Jan 15, 2019
1 parent eb83d88 commit 71ba8bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testthat/test-plan-transformations.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
drake_context("plan transformations")

test_with_dir("simple expansion", {
plan <- drake_plan(a = target(1 +1, transform = cross(x = c(1, 2))))
plan <- drake_plan(a = target(1 + 1, transform = cross(x = c(1, 2))))
expect_equal(sort(plan$target), sort(c("a_1", "a_2")))
expect_equal(plan$command, rep("1 + 1", 2))
})
Expand Down

0 comments on commit 71ba8bd

Please sign in to comment.