summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-09-05 23:42:04 +0200
committerJelmer Vernooij <jelmer@samba.org>2010-09-05 23:42:04 +0200
commit00998e68def7710ae12f926c0a1aaa0df861f13d (patch)
tree870f5bf9a58f03a200b8bcb763c3f60dc1610d80 /tests
parent8331236f1ddcd0ac9056dce82f157714e7277f7a (diff)
downloadbzr-fastimport-00998e68def7710ae12f926c0a1aaa0df861f13d.tar.gz
Fix typo, handle bzr-specific locking in GenericProcessor.
Diffstat (limited to 'tests')
-rw-r--r--tests/test_filter_processor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_filter_processor.py b/tests/test_filter_processor.py
index 2857873..5bc7d97 100644
--- a/tests/test_filter_processor.py
+++ b/tests/test_filter_processor.py
@@ -109,7 +109,7 @@ class TestCaseWithFiltering(TestCase):
def assertFiltering(self, input, params, expected):
outf = StringIO()
proc = filter_processor.FilterProcessor(
- None, params=params)
+ params=params)
proc.outf = outf
s = StringIO(input)
p = parser.ImportParser(s)