# HG changeset patch # User Martin von Zweigbergk # Date 2019-10-29 17:54:08 # Node ID c2c3ee8794dd3749f2053555250576039cb2f1f4 # Parent 65c37b431e7652b2c3036eac25703c1504efadad tests: fix typo "includfe" Differential Revision: https://phab.mercurial-scm.org/D7180 diff --git a/tests/test-match.py b/tests/test-match.py --- a/tests/test-match.py +++ b/tests/test-match.py @@ -316,7 +316,7 @@ class DifferenceMatcherTests(unittest.Te # 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 @@ class IntersectionMatcherTests(unittest. # 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 @@ class UnionMatcherTests(unittest.TestCas # 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])