Skip to content

Commit

Permalink
- fixe3s regression
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Biret <[email protected]>
  • Loading branch information
baywet committed Dec 19, 2023
1 parent 2185e68 commit 5cc4b5a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 4 additions & 2 deletions tests/Kiota.Builder.Tests/TestHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,16 @@ public static CodeClass CreateModelClass(CodeNamespace codeSpace, string classNa
{
Name = "DeserializerMethod",
ReturnType = new CodeType { },
Kind = CodeMethodKind.Deserializer
Kind = CodeMethodKind.Deserializer,
IsAsync = false,
};

var serializer = new CodeMethod
{
Name = "SerializerMethod",
ReturnType = new CodeType { },
Kind = CodeMethodKind.Serializer
Kind = CodeMethodKind.Serializer,
IsAsync = false,
};
testClass.AddMethod(deserializer);
testClass.AddMethod(serializer);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
using System.Threading.Tasks;
using Kiota.Builder.CodeDOM;
using Kiota.Builder.Configuration;
using Kiota.Builder.Extensions;
using Kiota.Builder.OrderComparers;
using Kiota.Builder.Refiners;
using Kiota.Builder.Writers;
Expand Down

0 comments on commit 5cc4b5a

Please sign in to comment.