Skip to content

Commit 036df1e

Browse files
authored
Fix flaky test on send submission (#4207)
1 parent 441477b commit 036df1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/api/submissions/tests/test_send_submission.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ def test_submit_talk_with_not_valid_submission_type_id(graphql_client, user):
641641
audience_levels=("Beginner",),
642642
)
643643

644-
resp, _ = _submit_talk(graphql_client, conference, type=5)
644+
resp, _ = _submit_talk(graphql_client, conference, type=999)
645645

646646
assert resp["data"]["sendSubmission"]["__typename"] == "SendSubmissionErrors"
647647
assert resp["data"]["sendSubmission"]["errors"]["validationType"] == [

0 commit comments

Comments
 (0)