Skip to content

Commit

Permalink
fix: find replace integ test after scroll track markers
Browse files Browse the repository at this point in the history
  • Loading branch information
abose committed Feb 18, 2025
1 parent e4b7349 commit ab3e978
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/spec/FindReplace-integ-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ define(function (require, exports, module) {
expect(marks.length).toEql(fooExpectedMatches.length);

marks.forEach(function (mark, index) {
expect(mark.line).toEql(fooExpectedMatches[index].start.line);
expect(mark.start.line).toEql(fooExpectedMatches[index].start.line);
});
});

Expand Down

0 comments on commit ab3e978

Please sign in to comment.