Skip to content

Commit a789d16

Browse files
committed
Merge pull request swiftlang#1497 from andrewjl/andrewjl/fix-xctskip-warning
fix XCTSkip warning
1 parent 07a14af commit a789d16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/SwiftSyntaxParserTest/IncrementalParsingTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class IncrementalParsingTests: XCTestCase {
2929
}
3030

3131
public func testReusedNode() throws {
32-
throw XCTSkip("Swift parser does not handle node reuse yet")
32+
try XCTSkipIf(true, "Swift parser does not handle node reuse yet")
3333

3434
let original = "struct A {}\nstruct B {}\n"
3535
let step: (String, (Int, Int, String)) =

0 commit comments

Comments
 (0)