Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
adamreeve committed Jul 22, 2024
1 parent 9aadc9c commit db6b50b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Tests/Libs/GirTest-0.1.Tests/MethodHidingTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public void CanCallNewToStringMethod()
public void CanCallObjectToStringMethod()
{
var instance = MethodHidingSubclass.New();
var asObj = (object)instance;
var asObj = (object) instance;
asObj.ToString().Should().Contain("MethodHidingSubclass");
}

Expand All @@ -32,7 +32,7 @@ public void CanCallNewMethodOnSubclass()
public void CanCallNewMethodFromBaseClass()
{
var instance = MethodHidingSubclass.New();
var asBase = ((MethodHidingBase)instance);
var asBase = ((MethodHidingBase) instance);
asBase.CustomString().Should().Be("Base class custom string");
}
}

0 comments on commit db6b50b

Please sign in to comment.