Skip to content

Commit

Permalink
Problem #1 - the underlying value has changed (it used to be a Canoni…
Browse files Browse the repository at this point in the history
…calCode.OK (0) but now is StatusCode.OK (1)).
  • Loading branch information
richardpark-msft committed Feb 19, 2021
1 parent 5ff1bfb commit ff05ca9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export class BasicScenario implements Scenario {
version: 1,
name: "BasicScenario.Root",
duration: msToTimeSpan(600),
responseCode: "0",
responseCode: StatusCode.OK.toString(),
success: true,
properties: {
foo: "bar"
Expand All @@ -108,7 +108,7 @@ export class BasicScenario implements Scenario {
name: "BasicScenario.Child.1",
duration: msToTimeSpan(100),
success: true,
resultCode: "0",
resultCode: StatusCode.OK.toString(),
properties: {
numbers: "123"
}
Expand All @@ -125,7 +125,7 @@ export class BasicScenario implements Scenario {
name: "BasicScenario.Child.2",
duration: msToTimeSpan(100),
success: true,
resultCode: "0",
resultCode: StatusCode.OK.toString(),
properties: {
numbers: "1234"
}
Expand Down

0 comments on commit ff05ca9

Please sign in to comment.