Skip to content

Commit 81ff635

Browse files
Move the test to similar test
1 parent 85f0589 commit 81ff635

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Tests/CSharp/MemberTests/MemberTests.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -921,6 +921,13 @@ public partial class TestClass // VB doesn't require partial here (when just a s
921921
}");
922922
}
923923

924+
[Fact]
925+
public async Task Issue1097_PartialMethodAsync()
926+
{
927+
await TestConversionVisualBasicToCSharpAsync(@"Partial Private Sub DummyMethod()
928+
End Sub", @"partial void DummyMethod();");
929+
}
930+
924931
[Fact]
925932
public async Task NestedClassAsync()
926933
{

Tests/CSharp/SpecialConversionTests.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -402,11 +402,4 @@ End If
402402
}
403403
}");
404404
}
405-
406-
[Fact]
407-
public async Task Issue1097_PartialMethodAsync()
408-
{
409-
await TestConversionVisualBasicToCSharpAsync(@"Partial Private Sub DummyMethod()
410-
End Sub", @"partial void DummyMethod();");
411-
}
412405
}

0 commit comments

Comments
 (0)