Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mdoc/mdoc.Test/FormatterTests.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mdoc/mdoc.Test/FormatterTests.cs b/mdoc/mdoc.Test/FormatterTests.cs
index b2acbb2e..40b46d70 100644
--- a/mdoc/mdoc.Test/FormatterTests.cs
+++ b/mdoc/mdoc.Test/FormatterTests.cs
@@ -437,7 +437,7 @@ namespace mdoc.Test
}
[TestCase("TupleMethod", "public (int a,int) TupleMethod ((int,int) t1, (int b,int c,int d) t2);")]
- [TestCase("RecursiveTupleMethod", "public ((int a,int b) c,int d) RecursiveTupleMethod ((((int a,int) b,int c) d,(int e,(int f, int g) h) i,int j) t);")]
+ [TestCase("RecursiveTupleMethod", "public ((int a,int b) c,int d) RecursiveTupleMethod ((((int a,int) b,int c) d,(int e,(int f,int g) h) i,int j) t);")]
public void CSharpTupleNamesMethodTest(string methodName, string expectedSignature)
{
var method = GetMethod(typeof(SampleClasses.TupleNamesTestClass), m => m.Name == methodName);