Skip to content

Commit

Permalink
Very slight performance improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
rmunn committed Aug 15, 2024
1 parent 70e34e8 commit 3fa3660
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LfMerge.Core.Tests/SRTestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public SRTestBase()
}

private static string TestName => TestContext.CurrentContext.Test.Name;
private static string TestNameForPath => string.Join("", TestName.Split(Path.GetInvalidPathChars())); // Easiest way to strip out all invalid chars
private static string TestNameForPath => string.Concat(TestName.Split(Path.GetInvalidPathChars())); // Easiest way to strip out all invalid chars

[OneTimeSetUp]
public async Task FixtureSetup()
Expand Down

0 comments on commit 3fa3660

Please sign in to comment.