File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -764,7 +764,7 @@ private void CheckAllTests(string rawOutput, List<TestResult> results)
764
764
765
765
string method = line . Substring ( line . IndexOf ( TestFailed ) + TestFailed . Length ) . Split ( ',' ) [ 0 ] ;
766
766
767
- string exception = line . Substring ( line . IndexOf ( TestFailed ) + TestPassed . Length + method . Length + 2 ) ;
767
+ string exception = line . Substring ( line . IndexOf ( TestFailed ) + TestFailed . Length + method . Length + 2 ) ;
768
768
769
769
// Find the test
770
770
var res = results . FirstOrDefault ( m => m . TestCase . DisplayName == method ) ;
@@ -786,7 +786,7 @@ private void CheckAllTests(string rawOutput, List<TestResult> results)
786
786
787
787
string method = line . Substring ( line . IndexOf ( TestSkipped ) + TestSkipped . Length ) . Split ( ',' ) [ 0 ] ;
788
788
789
- string exception = line . Substring ( line . IndexOf ( TestSkipped ) + TestPassed . Length + method . Length + 2 ) ;
789
+ string exception = line . Substring ( line . IndexOf ( TestSkipped ) + TestSkipped . Length + method . Length + 2 ) ;
790
790
791
791
// Find the test
792
792
var res = results . FirstOrDefault ( m => m . TestCase . DisplayName == method ) ;
You can’t perform that action at this time.
0 commit comments