Skip to content

Commit

Permalink
- fixes failing unit test
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Biret <[email protected]>
  • Loading branch information
baywet committed Mar 22, 2023
1 parent de51794 commit ecf2e07
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ public void WritesRequestExecutorBody()
writer.Write(method);
var result = tw.ToString();
Assert.Contains("request_info", result);
Assert.Contains("from . import error4_x_x, error401, error5_x_x", result);
Assert.Contains("from . import error401, error4_x_x, error5_x_x", result);
Assert.Contains("error_mapping: Dict[str, ParsableFactory] =", result);
Assert.Contains("\"4XX\": error4_x_x.Error4XX", result);
Assert.Contains("\"5XX\": error5_x_x.Error5XX", result);
Expand Down

0 comments on commit ecf2e07

Please sign in to comment.