Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
DejayJD committed Oct 17, 2024
1 parent b9c4781 commit e7b17df
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from integration_tests.utils import populate_mock_db
from src.queries.get_comments import (
COMMENT_REPORT_KARMA_THRESHOLD,
get_comment_replies,
get_paginated_replies,
get_track_comments,
)
from src.utils.db_session import get_db
Expand Down Expand Up @@ -153,7 +153,7 @@ def test_get_comments_replies(app):
with app.app_context():
db = get_db()
populate_mock_db(db, test_entities)
comments = get_comment_replies(
comments = get_paginated_replies(
{"limit": 2, "offset": 2, "sort_method": "newest"}, 10
)
for comment in comments:
Expand Down

0 comments on commit e7b17df

Please sign in to comment.