Skip to content

Commit c8a1069

Browse files
committed
Remove redundant TupleExprElement wrapper
1 parent 0ec7b5a commit c8a1069

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/SwiftSyntaxBuilderTest/FunctionTests.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ final class FunctionTests: XCTestCase {
3333
BinaryOperatorExpr("+"),
3434

3535
FunctionCallExpr(MemberAccessExpr(base: "self", name: "fibonacci")) {
36-
TupleExprElement(expression: SequenceExpr(elements: ExprList([
36+
SequenceExpr(elements: ExprList([
3737
IntegerLiteralExpr(digits: "n"),
3838
BinaryOperatorExpr("-"),
3939
IntegerLiteralExpr(2),
40-
])))
40+
]))
4141
},
4242
])))
4343
}

0 commit comments

Comments
 (0)