Skip to content

Commit

Permalink
fix single-file test snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
Druue committed Jul 16, 2024
1 parent 0fc25fb commit d7ef871
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions packages/language-server/src/__test__/rename/single-file.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -369,8 +369,8 @@ describe('Rename', () => {
{
newText: ' @map("Album")',
range: {
start: { line: 136, character: 33 },
end: { line: 136, character: 33 },
start: { line: 136, character: 34 },
end: { line: 136, character: 34 },
},
},
],
Expand Down Expand Up @@ -416,8 +416,8 @@ describe('Rename', () => {
{
newText: ' @map("authorId")',
range: {
start: { line: 4, character: 16 },
end: { line: 4, character: 16 },
start: { line: 4, character: 17 },
end: { line: 4, character: 17 },
},
},
{
Expand Down Expand Up @@ -458,8 +458,8 @@ describe('Rename', () => {
{
newText: ' @map("title")',
range: {
start: { line: 17, character: 16 },
end: { line: 17, character: 16 },
start: { line: 17, character: 17 },
end: { line: 17, character: 17 },
},
},
{
Expand Down Expand Up @@ -492,8 +492,8 @@ describe('Rename', () => {
{
newText: ' @map("humanId")',
range: {
start: { line: 25, character: 13 },
end: { line: 25, character: 13 },
start: { line: 25, character: 14 },
end: { line: 25, character: 14 },
},
},
{
Expand Down Expand Up @@ -567,8 +567,8 @@ describe('Rename', () => {
{
newText: ' @map("A_VARIANT_WITH_UNDERSCORES")',
range: {
start: { line: 8, character: 27 },
end: { line: 8, character: 27 },
start: { line: 8, character: 28 },
end: { line: 8, character: 28 },
},
},
{
Expand Down

0 comments on commit d7ef871

Please sign in to comment.