Skip to content

Commit 2da0921

Browse files
committed
1 parent 7a42d5a commit 2da0921

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/vs/editor/test/common/core/range.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ suite('Editor Core - Range', () => {
8787
b = new Range(1, 1, 1, 4);
8888
assert.ok(Range.compareRangesUsingEnds(a, b) > 0, 'a.start = b.start, a.end > b.end');
8989

90-
a = new Range(1, 1, 5, 1);
90+
a = new Range(1, 2, 5, 1);
9191
b = new Range(1, 1, 1, 4);
92-
assert.ok(Range.compareRangesUsingEnds(a, b) > 0, 'a.start = b.start, a.end > b.end');
92+
assert.ok(Range.compareRangesUsingEnds(a, b) > 0, 'a.start > b.start, a.end > b.end');
9393
});
9494

9595
test('containsPosition', () => {

0 commit comments

Comments
 (0)