Pipfile.lock post merge

This commit is contained in:
jonaswinkler
2020-11-27 00:10:40 +01:00
parent 3daee6b5b5
commit 2b1c11503a
2 changed files with 293 additions and 7 deletions

View File

@@ -410,10 +410,10 @@ def fake_magic_from_file(file, mime=False):
@mock.patch("documents.consumer.magic.from_file", fake_magic_from_file)
class TestConsumer(TestCase):
def make_dummy_parser(self, path, logging_group):
def make_dummy_parser(self, logging_group):
return DummyParser(logging_group, self.dirs.scratch_dir)
def make_faulty_parser(self, path, logging_group):
def make_faulty_parser(self, logging_group):
return FaultyParser(logging_group, self.dirs.scratch_dir)
def setUp(self):