Skip to content

Commit

Permalink
Removed whitespace only lines in ArgumentMatching.cs suggested by CI …
Browse files Browse the repository at this point in the history
…action
  • Loading branch information
rbeurskens authored Dec 15, 2024
1 parent 04642cd commit 45f87b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/NSubstitute.Acceptance.Specs/ArgumentMatching.cs
Original file line number Diff line number Diff line change
Expand Up @@ -910,12 +910,12 @@ class CustomDescribeSpecMatcher(string description) : CustomMatcher, IDescribeSp
{
public string DescribeSpecification() => description;
}

public interface IHasMethodWithOutParameter
{
int MethodWithOutParameter(int arg1, out int arg2);
}

public class HasMethodWithOutParameter : IHasMethodWithOutParameter
{
public virtual int MethodWithOutParameter(int arg1, out int arg2)
Expand All @@ -924,7 +924,7 @@ public virtual int MethodWithOutParameter(int arg1, out int arg2)
return 1;
}
}

public class MyHasMethodWithOutParameter : HasMethodWithOutParameter
{
// The presence of his override used to throw an exception in NSubstitute 5.0.0, caused by a bug in Caste.Core < 5.2.0
Expand All @@ -935,4 +935,4 @@ public override int MethodWithOutParameter(int arg1, out int arg2)
return 2;
}
}
}
}

0 comments on commit 45f87b6

Please sign in to comment.