@@ -327,7 +327,7 @@ def test_infra_no_intermittent(activate_responses, hundred_job_blobs, mock_parse
327327
328328 # this will parse and check for intermittents
329329 mock_full_log_parser (job_logs , mock_parser )
330- # verify_classification_id(jobs, 1, 8)
330+ verify_classification_id (jobs , 1 , 8 )
331331
332332
333333def test_infra_intermittent (activate_responses , hundred_job_blobs , mock_parser , create_jobs ):
@@ -342,7 +342,7 @@ def test_infra_intermittent(activate_responses, hundred_job_blobs, mock_parser,
342342
343343 # this will parse and check for intermittents
344344 mock_full_log_parser (job_logs , mock_parser )
345- # verify_classification_id(jobs, 8, 1)
345+ verify_classification_id (jobs , 8 , 1 )
346346
347347
348348def test_multiple_jobs_intermittent (
@@ -360,7 +360,7 @@ def test_multiple_jobs_intermittent(
360360
361361 # this will parse and check for intermittents
362362 mock_full_log_parser (job_logs , mock_parser )
363- # verify_classification_id(jobs, 8, 8)
363+ verify_classification_id (jobs , 8 , 8 )
364364
365365
366366def test_confirm_failure_no_intermittent (
@@ -378,7 +378,7 @@ def test_confirm_failure_no_intermittent(
378378
379379 # this will parse and check for intermittents
380380 mock_full_log_parser (job_logs , mock_parser )
381- # verify_classification_id(jobs, 1, 1)
381+ verify_classification_id (jobs , 1 , 1 )
382382
383383
384384def test_confirm_failure_partial_intermittent (
@@ -395,7 +395,7 @@ def test_confirm_failure_partial_intermittent(
395395
396396 # this will parse and check for intermittents
397397 mock_full_log_parser (job_logs , mock_parser )
398- # verify_classification_id(jobs, 1, 1)
398+ verify_classification_id (jobs , 1 , 1 )
399399
400400
401401def test_confirm_failure_pass_intermittent (
@@ -414,7 +414,7 @@ def test_confirm_failure_pass_intermittent(
414414
415415 # this will parse and check for intermittents
416416 mock_full_log_parser (job_logs , mock_parser )
417- # verify_classification_id(jobs, 8, 1)
417+ verify_classification_id (jobs , 8 , 1 )
418418
419419
420420def test_retrigger_no_intermittent (activate_responses , hundred_job_blobs , mock_parser , create_jobs ):
@@ -429,7 +429,7 @@ def test_retrigger_no_intermittent(activate_responses, hundred_job_blobs, mock_p
429429
430430 # this will parse and check for intermittents
431431 mock_full_log_parser (job_logs , mock_parser )
432- # verify_classification_id(jobs, 1, 1)
432+ verify_classification_id (jobs , 1 , 1 )
433433
434434
435435def test_retrigger_intermittent (activate_responses , hundred_job_blobs , mock_parser , create_jobs ):
@@ -444,7 +444,7 @@ def test_retrigger_intermittent(activate_responses, hundred_job_blobs, mock_pars
444444
445445 # this will parse and check for intermittents
446446 mock_full_log_parser (job_logs , mock_parser )
447- # verify_classification_id(jobs, 8, 8)
447+ verify_classification_id (jobs , 8 , 8 )
448448
449449
450450def test_reclassify_group_intermittent (
@@ -462,7 +462,7 @@ def test_reclassify_group_intermittent(
462462
463463 # this will parse and check for intermittents
464464 mock_full_log_parser (job_logs , mock_parser )
465- # verify_classification_id(jobs, 1, 8)
465+ verify_classification_id (jobs , 1 , 8 )
466466
467467
468468def test_reclassify_infra_intermittent (
@@ -480,4 +480,4 @@ def test_reclassify_infra_intermittent(
480480
481481 # this will parse and check for intermittents
482482 mock_full_log_parser (job_logs , mock_parser )
483- # verify_classification_id(jobs, 1, 1)
483+ verify_classification_id (jobs , 1 , 1 )
0 commit comments