From 61a432ba103b415f0fb32ee8f0e82d9b857b8ec0 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 24 Sep 2025 08:33:35 +0000 Subject: [PATCH 1/2] fix(deps): update kubernetescrdmodelgen --- .../Function.SDK.CSharp.Sample.csproj | 6 +++--- .../Function.SDK.CSharp.SourceGenerator.csproj | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Function.SDK.CSharp.Sample/Function.SDK.CSharp.Sample.csproj b/src/Function.SDK.CSharp.Sample/Function.SDK.CSharp.Sample.csproj index 84dc921..cee8090 100644 --- a/src/Function.SDK.CSharp.Sample/Function.SDK.CSharp.Sample.csproj +++ b/src/Function.SDK.CSharp.Sample/Function.SDK.CSharp.Sample.csproj @@ -20,9 +20,9 @@ - - - + + + diff --git a/src/Function.SDK.CSharp.SourceGenerator/Function.SDK.CSharp.SourceGenerator.csproj b/src/Function.SDK.CSharp.SourceGenerator/Function.SDK.CSharp.SourceGenerator.csproj index 668b898..9995907 100644 --- a/src/Function.SDK.CSharp.SourceGenerator/Function.SDK.CSharp.SourceGenerator.csproj +++ b/src/Function.SDK.CSharp.SourceGenerator/Function.SDK.CSharp.SourceGenerator.csproj @@ -34,7 +34,7 @@ - + From 8470d2b770804aee5de939101ee6ba6827619840 Mon Sep 17 00:00:00 2001 From: Ivan Josipovic <9521987+IvanJosipovic@users.noreply.github.com> Date: Wed, 24 Sep 2025 09:32:22 -0700 Subject: [PATCH 2/2] chore: fix test --- .../Function.SDK.CSharp.Sample.Tests/UnitTest1.cs | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/tests/Function.SDK.CSharp.Sample.Tests/UnitTest1.cs b/tests/Function.SDK.CSharp.Sample.Tests/UnitTest1.cs index 495b07e..81ec397 100644 --- a/tests/Function.SDK.CSharp.Sample.Tests/UnitTest1.cs +++ b/tests/Function.SDK.CSharp.Sample.Tests/UnitTest1.cs @@ -71,7 +71,10 @@ public void TestMerge() [ new() { - Status = "Ready" + Status = "Ready", + LastTransitionTime = "01/01/2025", + Reason = "test", + Type = "testType" } ] } @@ -134,8 +137,10 @@ public void TestReadyFalse() [ new() { - Type = "Ready", - Status = "False" + Status = "Ready", + LastTransitionTime = "01/01/2025", + Reason = "test", + Type = "testType" } ] } @@ -199,8 +204,10 @@ public void TestReadyTrue() [ new() { + LastTransitionTime = "01/01/2025", + Reason = "test", + Status = "True", Type = "Ready", - Status = "True" } ] }