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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2012-12-04 17:46:36 +0400
committerMarek Safar <marek.safar@gmail.com>2012-12-04 18:11:09 +0400
commitc28feddaf9daa83dab83bccb475ecd6149d53c12 (patch)
tree21952dae52679af8c47e2f137fc5de29a64a2f04
parent4e5ecefa684231c2ec12f8ad792aa1c41f19f2f6 (diff)
Pass empty array to Main methods
-rw-r--r--mcs/tools/compiler-tester/compiler-tester.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/tools/compiler-tester/compiler-tester.cs b/mcs/tools/compiler-tester/compiler-tester.cs
index 7f802bcf9e9..eed75991911 100644
--- a/mcs/tools/compiler-tester/compiler-tester.cs
+++ b/mcs/tools/compiler-tester/compiler-tester.cs
@@ -189,7 +189,7 @@ namespace TestRunner {
if (param.Length == 0)
return declaring + "." + mi.Name + " ()";
- return declaring + "." + mi.Name + " (null)";
+ return declaring + "." + mi.Name + " (new string[0])";
}
public string GetTestFixture ()