Skip to content

Commit

Permalink
Fix typo in FindInFiles-test.js
Browse files Browse the repository at this point in the history
occurences -> occurrences
  • Loading branch information
eltociear authored and abose committed Aug 15, 2022
1 parent 242295b commit eb01e02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/spec/FindInFiles-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ define(function (require, exports, module) {

afterEach(closeSearchBar);

it("should find all occurences in project", function () {
it("should find all occurrences in project", function () {
openSearchBar();
executeSearch("foo");

Expand Down Expand Up @@ -369,7 +369,7 @@ define(function (require, exports, module) {
});
});

it("should find all occurences in folder", function () {
it("should find all occurrences in folder", function () {
var dirEntry = FileSystem.getDirectoryForPath(testPath + "/css/");
openSearchBar(dirEntry);
executeSearch("foo");
Expand All @@ -390,7 +390,7 @@ define(function (require, exports, module) {
});
});

it("should find all occurences in single file", function () {
it("should find all occurrences in single file", function () {
var fileEntry = FileSystem.getFileForPath(testPath + "/foo.js");
openSearchBar(fileEntry);
executeSearch("foo");
Expand Down

0 comments on commit eb01e02

Please sign in to comment.