Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
qvalentin committed Apr 6, 2024
1 parent 4489389 commit 9dbd0cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/lsp/symbol_table_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func TestSymbolTableForIncludeDefinitions(t *testing.T) {
assert.Len(t, symbolTable.includeDefinitions, 2)

// TODO: remove the double quotes
assert.Equal(t, symbolTable.includeDefinitions["\"bar\""], sitter.Range{
assert.Equal(t, symbolTable.includeDefinitions["bar"], []sitter.Range{{
StartPoint: sitter.Point{
Row: 5,
Column: 0,
Expand All @@ -36,7 +36,7 @@ func TestSymbolTableForIncludeDefinitions(t *testing.T) {
},
StartByte: 56,
EndByte: 110,
})
}})
}

func TestSymbolTableForValues(t *testing.T) {
Expand Down

0 comments on commit 9dbd0cd

Please sign in to comment.