Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 2335be5

Browse files
committed
Fix 3 identical typos
1 parent 4b7175f commit 2335be5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

spec/project-find-view-spec.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describe 'ProjectFindView', ->
2424

2525
beforeEach ->
2626
workspaceElement = atom.views.getView(atom.workspace)
27-
atom.config.set('core.excludeVcsIgnores', false)
27+
atom.config.set('core.excludeVcsIgnoredPaths', false)
2828
atom.project.setPaths([path.join(__dirname, 'fixtures')])
2929
jasmine.attachToDOM(workspaceElement)
3030

spec/results-model-spec.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe 'ResultsModel', ->
1010
[editor, searchPromise, resultsModel, searchPromise] = []
1111

1212
beforeEach ->
13-
atom.config.set('core.excludeVcsIgnores', false)
13+
atom.config.set('core.excludeVcsIgnoredPaths', false)
1414
atom.project.setPaths([path.join(__dirname, 'fixtures')])
1515

1616
waitsForPromise ->

spec/results-view-spec.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describe 'ResultsView', ->
2424
workspaceElement = atom.views.getView(atom.workspace)
2525
workspaceElement.style.height = '1000px'
2626
jasmine.attachToDOM(workspaceElement)
27-
atom.config.set('core.excludeVcsIgnores', false)
27+
atom.config.set('core.excludeVcsIgnoredPaths', false)
2828
atom.project.setPaths([path.join(__dirname, 'fixtures')])
2929
promise = atom.packages.activatePackage("find-and-replace").then ({mainModule}) ->
3030
mainModule.createViews()

0 commit comments

Comments
 (0)