Skip to content

Commit 67bd978

Browse files
Merge pull request #13 from r-lib/fix-braces-in-function-calls
- Add more test cases (#13).
2 parents bbff734 + 0c844fa commit 67bd978

File tree

3 files changed

+215
-127
lines changed

3 files changed

+215
-127
lines changed

tests/testthat/curly-curly/mixed-in.R

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,24 @@ call({
6666

6767
## ............................................................................
6868
## multiple ####
69+
call("test", {
70+
1
71+
})
72+
73+
call(
74+
"test", {
75+
1
76+
})
77+
78+
call("test",
79+
{
80+
1
81+
})
82+
83+
call("test", {
84+
1 }
85+
)
86+
6987
call({
7088
1
7189
}, a + b, { 33 / f(c)})

tests/testthat/curly-curly/mixed-in_tree

Lines changed: 179 additions & 127 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)