Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
rename function
  • Loading branch information
redmunds committed Apr 17, 2014
1 parent 73ffa3e commit bfa88ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/search/ScrollTrackMarkers.js
Expand Up @@ -160,13 +160,13 @@ define(function (require, exports, module) {
}

// Private helper for unit tests
function _getMarks() {
function _getTickmarks() {
return marks;
}


// For unit tests
exports._getMarks = _getMarks;
exports._getTickmarks = _getTickmarks;

exports.clear = clear;
exports.setVisible = setVisible;
Expand Down
2 changes: 1 addition & 1 deletion test/spec/FindReplace-test.js
Expand Up @@ -558,7 +558,7 @@ define(function (require, exports, module) {
enterSearchText("foo");
expectHighlightedMatches(fooExpectedMatches);

var marks = testWindow.brackets.test.ScrollTrackMarkers._getMarks();
var marks = testWindow.brackets.test.ScrollTrackMarkers._getTickmarks();
expect(marks.length).toEqual(fooExpectedMatches.length);

marks.forEach(function (mark, index) {
Expand Down

0 comments on commit bfa88ad

Please sign in to comment.