@@ -1266,21 +1266,26 @@ def test_update_submission_with_do_not_record_true(graphql_client, user):
12661266 graphql_client .force_login (user )
12671267
12681268 conference = ConferenceFactory (
1269- topics = ("my-topic" , ),
1270- languages = ("en " , "it " ),
1271- submission_types = ("talk" , ),
1269+ topics = ("life" , "diy" ),
1270+ languages = ("it " , "en " ),
1271+ durations = ("10" , "20" ),
12721272 active_cfp = True ,
1273- durations = ("50" , ),
1274- audience_levels = ("Beginner" , ),
1273+ audience_levels = ("adult" , "senior" ),
1274+ submission_types = ("talk" , "workshop" ),
12751275 )
12761276
12771277 submission = SubmissionFactory (
12781278 speaker_id = user .id ,
1279+ custom_topic = "life" ,
1280+ custom_duration = "10m" ,
1281+ custom_audience_level = "adult" ,
1282+ custom_submission_type = "talk" ,
1283+ languages = ["it" ],
1284+ tags = ["python" , "ml" ],
12791285 conference = conference ,
1286+ speaker_level = Submission .SPEAKER_LEVELS .intermediate ,
1287+ previous_talk_video = "https://www.youtube.com/watch?v=SlPhMPnQ58k" ,
12801288 do_not_record = False ,
1281- tags = [
1282- "python" ,
1283- ],
12841289 )
12851290
12861291 graphql_client .force_login (user )
0 commit comments