Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Nov 21, 2023
1 parent f9b89e4 commit 069c0b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Tests/WithScalpelConstant/MoqTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ public partial class WithScalpelConstantTests
public void MoqIsRemoved()
{
var referencedAssemblies = result.Assembly.GetReferencedAssemblies();
Assert.DoesNotContain(referencedAssemblies, x =>x.Name == "Moq");
Assert.DoesNotContain(referencedAssemblies, _ => _.Name == "Moq");
}
}
2 changes: 1 addition & 1 deletion Tests/WithScalpelConstant/NSubstituteTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ public partial class WithScalpelConstantTests
[Fact]
public void NSubstituteIsRemoved()
{
Assert.DoesNotContain(result.Assembly.GetReferencedAssemblies(), x =>x.Name == "NSubstitute");
Assert.DoesNotContain(result.Assembly.GetReferencedAssemblies(), _ => _.Name == "NSubstitute");
}
}
2 changes: 1 addition & 1 deletion Tests/WithScalpelConstant/WithScalpelConstantTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ static WithScalpelConstantTests()
[Fact]
public void ScalpelIsRemoved()
{
Assert.DoesNotContain(result.Assembly.GetReferencedAssemblies(), x =>x.Name == "Scalpel");
Assert.DoesNotContain(result.Assembly.GetReferencedAssemblies(), _ => _.Name == "Scalpel");
}

[Fact]
Expand Down

0 comments on commit 069c0b6

Please sign in to comment.