From 38c8028c3e3c72c76b0251bf53f4df76cf99cbfd Mon Sep 17 00:00:00 2001 From: Mansheng Yang Date: Sat, 26 May 2012 20:44:34 +0800 Subject: [PATCH] [CodeAction] SplitDeclarationList: Corrected a test --- .../CSharp/CodeActions/SplitDeclarationListTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ICSharpCode.NRefactory.Tests/CSharp/CodeActions/SplitDeclarationListTests.cs b/ICSharpCode.NRefactory.Tests/CSharp/CodeActions/SplitDeclarationListTests.cs index 7598e66ccb..527ff90165 100644 --- a/ICSharpCode.NRefactory.Tests/CSharp/CodeActions/SplitDeclarationListTests.cs +++ b/ICSharpCode.NRefactory.Tests/CSharp/CodeActions/SplitDeclarationListTests.cs @@ -90,11 +90,11 @@ class TestClass public void TestFixedField () { Test (@" -class TestClass +struct TestStruct { unsafe fixed int $a[10], b[10], c[10]; }", @" -class TestClass +struct TestStruct { unsafe fixed int a[10]; unsafe fixed int b[10];