Commit dd5b14c 1 parent 071a532 commit dd5b14c Copy full SHA for dd5b14c
File tree 2 files changed +3
-7
lines changed
src/ResultsAnalyzer/Analyze
2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -123,8 +123,7 @@ let main (args:AnalyzeArgs) =
123
123
let runDataMap = failedByResponseCode |> Map.ofSeq
124
124
let runSummary =
125
125
{
126
- RunSummary.requestsCount = failedStatusRequestResponsePairs |> Seq.length
127
- sequencesCount = 0
126
+ RunSummary.failedRequestsCount = failedStatusRequestResponsePairs |> Seq.length
128
127
RunSummary.bugCount = match runDataMap |> Map.tryFind BugResponseCode with
129
128
| Some x -> x |> Seq.length
130
129
| None -> 0
Original file line number Diff line number Diff line change @@ -63,11 +63,8 @@ type RequestExecutionSummary =
63
63
64
64
type RunSummary =
65
65
{
66
- /// Total number of executed requests
67
- requestsCount : int
68
-
69
- /// Total number of executed sequences
70
- sequencesCount : int
66
+ /// Total number of requests that were classified as a failure (e.g. 40x or 50x)
67
+ failedRequestsCount : int
71
68
72
69
/// The number of bugs found. Note: for now, this will be
73
70
/// the same as the number of 'BugResponseCode' errors above.
You can’t perform that action at this time.
0 commit comments