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

Commit 004f0c9

Browse files
committed
Merge pull request #6857 from lkcampbell/fix-6856
Fix issue #6856: Redefine which files are considered 'useless' in the Project Manager test case
2 parents 8f8d231 + 72413a9 commit 004f0c9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

test/spec/ProjectManager-test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -469,14 +469,14 @@ define(function (require, exports, module) {
469469
expect(shouldShow(makeEntry("Thumbs.db"))).toBe(false);
470470
expect(shouldShow(makeEntry(".hg"))).toBe(false);
471471
expect(shouldShow(makeEntry(".gitmodules"))).toBe(false);
472-
expect(shouldShow(makeEntry(".gitignore"))).toBe(false);
472+
expect(shouldShow(makeEntry(".gitignore"))).toBe(true);
473473
expect(shouldShow(makeEntry("foobar"))).toBe(true);
474474
expect(shouldShow(makeEntry("pyc.py"))).toBe(true);
475475
expect(shouldShow(makeEntry("module.pyc"))).toBe(false);
476-
expect(shouldShow(makeEntry(".gitattributes"))).toBe(false);
476+
expect(shouldShow(makeEntry(".gitattributes"))).toBe(true);
477477
expect(shouldShow(makeEntry("CVS"))).toBe(false);
478-
expect(shouldShow(makeEntry(".cvsignore"))).toBe(false);
479-
expect(shouldShow(makeEntry(".hgignore"))).toBe(false);
478+
expect(shouldShow(makeEntry(".cvsignore"))).toBe(true);
479+
expect(shouldShow(makeEntry(".hgignore"))).toBe(true);
480480
expect(shouldShow(makeEntry(".hgtags"))).toBe(false);
481481

482482
});

0 commit comments

Comments
 (0)