Skip to content

Commit a65e167

Browse files
committed
Fix test "should provide detailed symbol information"
1 parent 0afc6a0 commit a65e167

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/server.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ result
317317
const symbols = getDocumentSymbols(document);
318318

319319
const functionSymbol = symbols.find((s) => s.name === "classify-number");
320-
expect(functionSymbol?.detail).toContain("Function");
320+
expect(functionSymbol?.detail).toContain("Pattern matching function");
321321

322322
const recordSymbol = symbols.find((s) => s.name === "person");
323323
expect(recordSymbol?.detail).toContain("Record");

0 commit comments

Comments
 (0)