Skip to content

Commit

Permalink
- fixes property writer unit test for python
Browse files Browse the repository at this point in the history
  • Loading branch information
baywet committed Aug 9, 2023
1 parent 5fe47b0 commit 9b4420f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public void WritesQueryParameters()
writer.Write(property);
var result = tw.ToString();
Assert.DoesNotContain("@property", result);
Assert.Contains($"property_name: Optional[{TypeName}]", result);
Assert.Contains($"property_name: Optional[Graphtests.models.{TypeName}]", result);
}
[Fact]
public void WritesDefaultValuesForProperties()
Expand Down

0 comments on commit 9b4420f

Please sign in to comment.