Skip to content

Commit

Permalink
Code cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sakno committed Jan 20, 2025
1 parent 899c609 commit c6e0152
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions src/DotNext.Tests/Reflection/TypeExtensionsTests.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
using System.Reflection;

namespace DotNext.Reflection;

public sealed class TypeExtensionsTests : Test
{
public sealed class MyList : List<string>
{

}
public sealed class MyList : List<string>;

[Fact]
public static void DelegateSignature()
Expand Down Expand Up @@ -79,7 +74,7 @@ public static void IsUnmanaged()
}

[Fact]
public static unsafe void IsImmutable()
public static void IsImmutable()
{
True(typeof(ReadOnlySpan<int>).IsImmutable());
True(typeof(Guid).IsImmutable());
Expand Down Expand Up @@ -126,7 +121,7 @@ public static void EqualsMethodResolution()
}

[Fact]
public static unsafe void DefaultValues()
public static void DefaultValues()
{
Null(typeof(string).GetDefaultValue());
Null(typeof(void*).GetDefaultValue());
Expand Down

0 comments on commit c6e0152

Please sign in to comment.