@@ -548,10 +548,10 @@ class TestFailing(unittest.TestCase):
548548
549549 let plugin = Python3Plugin :: new ( ) ;
550550 let run_result = plugin. run_tests ( temp_dir. path ( ) , & mut vec ! [ ] ) . unwrap ( ) ;
551+ log:: debug!( "{:#?}" , run_result) ;
551552 assert_eq ! ( run_result. status, RunStatus :: TestsFailed ) ;
552553 assert_eq ! ( run_result. test_results[ 0 ] . name, "TestFailing: test_func" ) ;
553554 assert ! ( !run_result. test_results[ 0 ] . successful) ;
554- assert ! ( run_result. test_results[ 0 ] . points. contains( & "1.1" . into( ) ) ) ;
555555 assert ! ( run_result. test_results[ 0 ] . message. starts_with( "'a' != 'b'" ) ) ;
556556 assert ! ( !run_result. test_results[ 0 ] . exception. is_empty( ) ) ;
557557 assert_eq ! ( run_result. test_results. len( ) , 1 ) ;
@@ -579,10 +579,10 @@ class TestErroring(unittest.TestCase):
579579
580580 let plugin = Python3Plugin :: new ( ) ;
581581 let run_result = plugin. run_tests ( temp_dir. path ( ) , & mut vec ! [ ] ) . unwrap ( ) ;
582+ log:: debug!( "{:#?}" , run_result) ;
582583 assert_eq ! ( run_result. status, RunStatus :: TestsFailed ) ;
583584 assert_eq ! ( run_result. test_results[ 0 ] . name, "TestErroring: test_func" ) ;
584585 assert ! ( !run_result. test_results[ 0 ] . successful) ;
585- assert ! ( run_result. test_results[ 0 ] . points. contains( & "1.1" . into( ) ) ) ;
586586 assert_eq ! (
587587 run_result. test_results[ 0 ] . message,
588588 "name 'doSomethingIllegal' is not defined"
0 commit comments