Skip to content

Commit

Permalink
test name typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
epwr committed Feb 25, 2024
1 parent 0bb6803 commit 5f4393c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unit/data_service/sqlite3/test_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def test_sqlite3_driver_can_query_an_added_survey(
assert surveys[0] == new_open_survey


class TestDriverQuestionMethods:
class TestDriverTextQuestionMethods:
@pytest.mark.parametrize(
"text_question_uid",
(
Expand All @@ -86,7 +86,7 @@ class TestDriverQuestionMethods:
UUID("11111111-b37a-32b3-19d9-72ec921021e3"),
),
)
def test_driver_get_test_question(
def test_driver_get_text_question(
self, populated_db_driver: Sqlite3Driver, text_question_uid: UUID
):
question = populated_db_driver.get_text_question(question_uid=text_question_uid)
Expand Down Expand Up @@ -127,7 +127,7 @@ def test_get_text_question_returns_none_if_no_question_with_uid_exists(
),
),
)
def test_driver_can_list_questions_related_to_a_survey_uid(
def test_driver_can_list_text_questions_related_to_a_survey_uid(
self,
populated_db_driver: Sqlite3Driver,
survey_uid: UUID,
Expand Down

0 comments on commit 5f4393c

Please sign in to comment.