diff options
| author | Max Nanis | 2026-08-18 16:35:11 -0700 |
|---|---|---|
| committer | Max Nanis | 2026-08-18 16:35:11 -0700 |
| commit | 0742210fc7eaa54d8068bfd18414158dc9b33672 (patch) | |
| tree | 5f42b671ccbd9cc44f1f62229cac16a5e455317d /tests/models/legacy/test_user_question_answer_in.py | |
| parent | 6b4f8d6b8700a65bdf74beb3d95c969a81464a56 (diff) | |
| download | generalresearch-0742210fc7eaa54d8068bfd18414158dc9b33672.tar.gz generalresearch-0742210fc7eaa54d8068bfd18414158dc9b33672.zip | |
Ruff cleanup
Diffstat (limited to 'tests/models/legacy/test_user_question_answer_in.py')
| -rw-r--r-- | tests/models/legacy/test_user_question_answer_in.py | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/tests/models/legacy/test_user_question_answer_in.py b/tests/models/legacy/test_user_question_answer_in.py index 253c46e..224334a 100644 --- a/tests/models/legacy/test_user_question_answer_in.py +++ b/tests/models/legacy/test_user_question_answer_in.py @@ -24,12 +24,12 @@ class TestUserQuestionAnswers: session_factory, utc_hour_ago, ): - from generalresearch.models.thl.session import Session, Wall - from generalresearch.models.thl.user import User from generalresearch.models import Source from generalresearch.models.legacy.questions import ( UserQuestionAnswers, ) + from generalresearch.models.thl.session import Session, Wall + from generalresearch.models.thl.user import User u: User = user_factory(product=product) @@ -161,10 +161,7 @@ class TestUserQuestionAnswers: def test_allow_answer_failures_silent( self, - product_manager, user_manager, - session_manager, - wall_manager, product, user_factory, utc_hour_ago, @@ -176,11 +173,11 @@ class TestUserQuestionAnswers: that one QuestionAnswerIn without "loosing" any of the other QuestionAnswerIn items that they provided. """ - from generalresearch.models.thl.session import Session, Wall - from generalresearch.models.thl.user import User from generalresearch.models.legacy.questions import ( UserQuestionAnswers, ) + from generalresearch.models.thl.session import Session, Wall + from generalresearch.models.thl.user import User u: User = user_factory(product=product) |
