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

github.com/xamarin/NRefactory.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ICSharpCode.NRefactory.Tests/CSharp/CodeActions/ExtractMethodTests.cs')
-rw-r--r--ICSharpCode.NRefactory.Tests/CSharp/CodeActions/ExtractMethodTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ICSharpCode.NRefactory.Tests/CSharp/CodeActions/ExtractMethodTests.cs b/ICSharpCode.NRefactory.Tests/CSharp/CodeActions/ExtractMethodTests.cs
index 9021f4f7..f8c6aa40 100644
--- a/ICSharpCode.NRefactory.Tests/CSharp/CodeActions/ExtractMethodTests.cs
+++ b/ICSharpCode.NRefactory.Tests/CSharp/CodeActions/ExtractMethodTests.cs
@@ -564,7 +564,7 @@ class TestClass
public static void TestMethod ()
{
<-int i = 0;
- Action<string> action = (str) => {
+ Action<string> action = (str) => {
Console.WriteLine (str);
};->
}
@@ -573,7 +573,7 @@ class TestClass
static void NewMethod ()
{
int i = 0;
- Action<string> action = str => {
+ Action<string> action = str => {
Console.WriteLine (str);
};
}