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:
authorMin Huang <huangmin@microsoft.com>2022-03-03 16:23:15 +0300
committerMin Huang <huangmin@microsoft.com>2022-03-03 16:23:15 +0300
commitb8041854b3f7a6bf4c8cf9a9f440342130830558 (patch)
treefaecf8d71632700c2857db02a3aa1cafa500c445
parenta64c4edf1a51f53cf9b6a3d060db1df8065bcafc (diff)
update test casemdoc-5.8.8
-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);