Skip to content

Commit

Permalink
fix: wrong function names!
Browse files Browse the repository at this point in the history
  • Loading branch information
amindadgar committed Jan 29, 2024
1 parent 97902de commit 9bde2de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/test_prepare_discourse_query_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from utils.query_engine.discourse_query_engine import prepare_discourse_engine


class TestPrepareDiscordEngine(unittest.TestCase):
class TestPrepareDiscourseEngine(unittest.TestCase):
def setUp(self):
# Set up environment variables for testing
os.environ["CHUNK_SIZE"] = "128"
Expand All @@ -15,7 +15,7 @@ def setUp(self):
os.environ["K2_RETRIEVER_SEARCH"] = "5"
os.environ["D_RETRIEVER_SEARCH"] = "3"

def test_prepare_discord_engine(self):
def test_prepare_discourse_engine(self):
community_id = "123456"
topic_names = ["topic1", "topic2"]
category_names = ["category1", "category2"]
Expand Down

0 comments on commit 9bde2de

Please sign in to comment.