Browse Source

[CodeAction] SplitDeclarationList: Corrected a test

newNRvisualizers
Mansheng Yang 14 years ago
parent
commit
38c8028c3e
  1. 4
      ICSharpCode.NRefactory.Tests/CSharp/CodeActions/SplitDeclarationListTests.cs

4
ICSharpCode.NRefactory.Tests/CSharp/CodeActions/SplitDeclarationListTests.cs

@ -90,11 +90,11 @@ class TestClass @@ -90,11 +90,11 @@ class TestClass
public void TestFixedField ()
{
Test<SplitDeclarationListAction> (@"
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];

Loading…
Cancel
Save