From ed154276e2ba5045fbca8a7d2eb318f78c99c8fb Mon Sep 17 00:00:00 2001 From: Alex Macocian Date: Mon, 23 Sep 2024 11:09:05 +0200 Subject: [PATCH] Fix method test --- Sybil.UnitTests/MethodBuilderTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sybil.UnitTests/MethodBuilderTests.cs b/Sybil.UnitTests/MethodBuilderTests.cs index 02d75aa..c4533d6 100644 --- a/Sybil.UnitTests/MethodBuilderTests.cs +++ b/Sybil.UnitTests/MethodBuilderTests.cs @@ -17,7 +17,7 @@ public class MethodBuilderTests private const string ReturnType = "string"; private const string Expression = "this.someString;"; private const string Body = "this.someString = someString;"; - private const string PublicDeclaration = "public string Test()"; + private const string PublicDeclaration = "public string Test();"; private const string PublicEmptyMethod = "public string Test() => throw new NotImplementedException() ;"; private const string PublicSealedEmptyMethod = "public sealed string Test() => throw new NotImplementedException() ;"; private const string EmptyMethodWithParameter = "string Test(string someString) => throw new NotImplementedException() ;";