Skip to content

Commit

Permalink
fix processor tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ekneg54 committed Sep 11, 2024
1 parent 68f20ec commit 451e1b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 4 additions & 0 deletions tests/unit/connector/test_http_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,3 +537,7 @@ def test_health_endpoints_are_shortened(self):
health_endpoints = connector.health_endpoints
for endpoint, expected in zip(health_endpoints, expected_matching_regexes):
assert re.match(expected, endpoint)

@pytest.mark.skip("Not implemented")
def test_setup_calls_wait_for_health(self):
pass
2 changes: 0 additions & 2 deletions tests/unit/processor/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,6 @@ def setup_method(self) -> None:
patcher.start()
self.patchers.append(patcher)
super().setup_method()
config = {"Test Instance Name": self.CONFIG}
self.object = Factory.create(configuration=config)
self.specific_rules = self.set_rules(self.specific_rules_dirs)
self.generic_rules = self.set_rules(self.generic_rules_dirs)
self.match_all_event = {
Expand Down

0 comments on commit 451e1b9

Please sign in to comment.