@@ -501,7 +501,7 @@ def test_no_existing_testcase(self):
501501
502502 self .assertTrue (fuzz_task ._should_create_testcase (group , None ))
503503 self .mock .find_main_crash .assert_called_once_with (
504- self .crashes , 'test' , self .context .test_timeout , upload_urls )
504+ self .crashes , None , self .context .test_timeout , upload_urls )
505505
506506 self .assertEqual (self .crashes [0 ], group .main_crash )
507507
@@ -515,7 +515,7 @@ def test_has_existing_reproducible_testcase(self):
515515
516516 self .assertEqual (self .crashes [0 ].gestures , group .main_crash .gestures )
517517 self .mock .find_main_crash .assert_called_once_with (
518- self .crashes , 'test' , self .context .test_timeout , upload_urls )
518+ self .crashes , None , self .context .test_timeout , upload_urls )
519519 # TODO(metzman): Replace group in calls to _should_create_testcase with a
520520 # proto group.
521521 self .assertFalse (
@@ -530,7 +530,7 @@ def test_reproducible_crash(self):
530530
531531 self .assertEqual (self .crashes [0 ].gestures , group .main_crash .gestures )
532532 self .mock .find_main_crash .assert_called_once_with (
533- self .crashes , 'test' , self .context .test_timeout , upload_urls )
533+ self .crashes , None , self .context .test_timeout , upload_urls )
534534 self .assertTrue (
535535 fuzz_task ._should_create_testcase (group , self .unreproducible_testcase ))
536536 self .assertFalse (group .one_time_crasher_flag )
@@ -548,7 +548,7 @@ def test_has_existing_unreproducible_testcase(self):
548548
549549 self .assertEqual (self .crashes [0 ].gestures , group .main_crash .gestures )
550550 self .mock .find_main_crash .assert_called_once_with (
551- self .crashes , 'test' , self .context .test_timeout , upload_urls )
551+ self .crashes , None , self .context .test_timeout , upload_urls )
552552 self .assertTrue (group .one_time_crasher_flag )
553553
554554
0 commit comments