Fix method test

This commit is contained in:
2024-09-23 11:09:05 +02:00
parent a2060a7c45
commit ed154276e2
+1 -1
View File
@@ -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() ;";