From 9b4420fd82d93f97730754c568f82d39dbea4b06 Mon Sep 17 00:00:00 2001 From: Vincent Biret Date: Wed, 9 Aug 2023 15:26:36 -0400 Subject: [PATCH] - fixes property writer unit test for python --- .../Writers/Python/CodePropertyWriterTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Kiota.Builder.Tests/Writers/Python/CodePropertyWriterTests.cs b/tests/Kiota.Builder.Tests/Writers/Python/CodePropertyWriterTests.cs index 990b5cce30..533576540d 100644 --- a/tests/Kiota.Builder.Tests/Writers/Python/CodePropertyWriterTests.cs +++ b/tests/Kiota.Builder.Tests/Writers/Python/CodePropertyWriterTests.cs @@ -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()