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

Commit

Permalink
Merge pull request #6857 from lkcampbell/fix-6856
Browse files Browse the repository at this point in the history
Fix issue #6856: Redefine which files are considered 'useless' in the Project Manager test case
  • Loading branch information
redmunds committed Feb 12, 2014
2 parents 8f8d231 + 72413a9 commit 004f0c9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/spec/ProjectManager-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -469,14 +469,14 @@ define(function (require, exports, module) {
expect(shouldShow(makeEntry("Thumbs.db"))).toBe(false);
expect(shouldShow(makeEntry(".hg"))).toBe(false);
expect(shouldShow(makeEntry(".gitmodules"))).toBe(false);
expect(shouldShow(makeEntry(".gitignore"))).toBe(false);
expect(shouldShow(makeEntry(".gitignore"))).toBe(true);
expect(shouldShow(makeEntry("foobar"))).toBe(true);
expect(shouldShow(makeEntry("pyc.py"))).toBe(true);
expect(shouldShow(makeEntry("module.pyc"))).toBe(false);
expect(shouldShow(makeEntry(".gitattributes"))).toBe(false);
expect(shouldShow(makeEntry(".gitattributes"))).toBe(true);
expect(shouldShow(makeEntry("CVS"))).toBe(false);
expect(shouldShow(makeEntry(".cvsignore"))).toBe(false);
expect(shouldShow(makeEntry(".hgignore"))).toBe(false);
expect(shouldShow(makeEntry(".cvsignore"))).toBe(true);
expect(shouldShow(makeEntry(".hgignore"))).toBe(true);
expect(shouldShow(makeEntry(".hgtags"))).toBe(false);

});
Expand Down

0 comments on commit 004f0c9

Please sign in to comment.