Skip to content

Commit 6134c24

Browse files
authored
Merge pull request #1497 from andrewjl/andrewjl/fix-xctskip-warning
fix XCTSkip warning
2 parents d8dee5c + cb20ef8 commit 6134c24

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)