Skip to content

Commit

Permalink
fix generic_adder tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ekneg54 committed Oct 23, 2023
1 parent c14a609 commit ec213a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/processor/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ def setup_method(self) -> None:
"""
setUp class for the imported TestCase
"""
super().setup_method()
self.patchers = []
for name, kwargs in self.mocks.items():
patcher = mock.patch(name, **kwargs)
patcher.start()
self.patchers.append(patcher)
super().setup_method()
config = {"Test Instance Name": self.CONFIG}
self.object = Factory.create(configuration=config, logger=self.logger)
self.specific_rules = self.set_rules(self.specific_rules_dirs)
Expand Down

0 comments on commit ec213a6

Please sign in to comment.