Skip to content

Commit

Permalink
Fix test name and indent (#104946)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomeksowi authored Jul 18, 2024
1 parent 223249f commit b0ce1c4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/tests/Regressions/coreclr/103365/103365.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,12 @@ string IBaseInterface<BasicDerivedClass>.explicitDeclaration()
public static class Test_Issue103365
{
[Fact]
public static void Main ()
{
public static void Test()
{
var instances = new IBaseInterface<BasicBaseClass>[2];
instances[0] = new BasicBaseClass();
instances[1] = new BasicDerivedClass();
Assert.Equal("BasicBaseClass", instances[0].explicitDeclaration());
Assert.Equal("BasicDerivedClass", instances[1].explicitDeclaration());
}
}
}

0 comments on commit b0ce1c4

Please sign in to comment.