Skip to content

Commit b69147f

Browse files
committed
Fix tests
1 parent 8f9f5cc commit b69147f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/vs/editor/contrib/hover/test/browser/contentHover.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ suite('Content Hover', () => {
2323
actual,
2424
{
2525
showAtPosition: new Position(5, 5),
26-
showAtRange: new Range(5, 5, 5, 5),
26+
showAtSecondaryPosition: new Position(5, 5),
2727
highlightRange: new Range(4, 1, 5, 6)
2828
}
2929
);
@@ -42,8 +42,8 @@ suite('Content Hover', () => {
4242
assert.deepStrictEqual(
4343
actual,
4444
{
45-
showAtPosition: new Position(1, 6),
46-
showAtRange: new Range(1, 6, 1, 11),
45+
showAtPosition: new Position(1, 8),
46+
showAtSecondaryPosition: new Position(1, 6),
4747
highlightRange: new Range(1, 1, 1, 15)
4848
}
4949
);

0 commit comments

Comments
 (0)