Skip to content

Commit

Permalink
fix app config issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronald Krist committed Oct 16, 2024
1 parent 814baa1 commit f08a599
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ def _result(topic_id, request_id):

@pytest.fixture(scope="module")
def app_config(app_config):
app_config["REQUESTS_REGISTERED_EVENT_TYPES"] = [LogEventType(), CommentEventType()]
app_config["REQUESTS_REGISTERED_EVENT_TYPES"] = [TestEventType(), LogEventType(), CommentEventType()]
app_config["SEARCH_HOSTS"] = [
{
"host": os.environ.get("OPENSEARCH_HOST", "localhost"),
Expand All @@ -489,7 +489,6 @@ def app_config(app_config):
ConditionalRecipientRequestType(),
AnotherTopicUpdatingRequestType(),
]
app_config["REQUESTS_REGISTERED_EVENT_TYPES"] = [TestEventType()]
return app_config


Expand Down

0 comments on commit f08a599

Please sign in to comment.