Skip to content

Commit 129aa5f

Browse files
author
Ye
authored
Fix broken unit test (#12349)
1 parent 52009c4 commit 129aa5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/service/TreeVisitorTests.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ let ``Visit enum definition test`` () =
5757
let parseTree = parseSourceCode("C:\\test.fs", source)
5858

5959
match SyntaxTraversal.Traverse(pos0, parseTree, visitor) with
60-
| Some [ SynEnumCase (_, id1, _, _, _, _); SynEnumCase (_, id2, _, _, _, _) ] when id1.idText = "A" && id2.idText = "B" -> ()
60+
| Some [ SynEnumCase (_, id1, _, _, _, _, _); SynEnumCase (_, id2, _, _, _, _, _) ] when id1.idText = "A" && id2.idText = "B" -> ()
6161
| _ -> failwith "Did not visit enum definition"

0 commit comments

Comments
 (0)