Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Handle abuse reports being associated with appeal jobs #22370

Merged
merged 2 commits into from
Jun 18, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update src/olympia/abuse/tests/test_models.py
Co-authored-by: Mathieu Pillard <[email protected]>
  • Loading branch information
eviljeff and diox committed Jun 18, 2024
commit ead04d6ac6586f9ef27c5b0f4565ad1fdf0e2914
2 changes: 1 addition & 1 deletion src/olympia/abuse/tests/test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1336,7 +1336,7 @@ def test_reporter_can_appeal_appealed_decision(self):
self.decision.update(appeal_job=appeal_job)
# We can end up in this situation where an AbuseReport is tied
# to a CinderJob from an appeal, and if that somehow happens we want to
# make sure it's ossible for a reporter to appeal an appeal.
# make sure it's possible for a reporter to appeal an appeal.
new_report = AbuseReport.objects.create(
guid=self.addon.guid,
cinder_job=appeal_job,
Expand Down
Loading