Mercurial > hg
changeset 43375:c2c3ee8794dd stable
tests: fix typo "includfe"
Differential Revision: https://phab.mercurial-scm.org/D7180
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Tue, 29 Oct 2019 10:54:08 -0700 |
parents | 65c37b431e76 |
children | b27cf9f52194 |
files | tests/test-match.py |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/tests/test-match.py Fri Nov 01 11:02:47 2019 -0700 +++ b/tests/test-match.py Tue Oct 29 10:54:08 2019 -0700 @@ -316,7 +316,7 @@ # We're using includematcher instead of patterns because it behaves slightly # better (giving narrower results) than patternmatcher. - def testVisitdirIncludeIncludfe(self): + def testVisitdirIncludeInclude(self): m1 = matchmod.match(b'', b'', include=[b'path:dir/subdir']) m2 = matchmod.match(b'', b'', include=[b'rootfilesin:dir']) dm = matchmod.differencematcher(m1, m2) @@ -430,7 +430,7 @@ # We're using includematcher instead of patterns because it behaves slightly # better (giving narrower results) than patternmatcher. - def testVisitdirIncludeIncludfe(self): + def testVisitdirIncludeInclude(self): m1 = matchmod.match(b'', b'', include=[b'path:dir/subdir']) m2 = matchmod.match(b'', b'', include=[b'rootfilesin:dir']) im = matchmod.intersectmatchers(m1, m2) @@ -644,7 +644,7 @@ # We're using includematcher instead of patterns because it behaves slightly # better (giving narrower results) than patternmatcher. - def testVisitdirIncludeIncludfe(self): + def testVisitdirIncludeInclude(self): m1 = matchmod.match(b'', b'', include=[b'path:dir/subdir']) m2 = matchmod.match(b'', b'', include=[b'rootfilesin:dir']) um = matchmod.unionmatcher([m1, m2])