diff --git a/TJC.StringExtensions.Tests/Separator/DictionarySeparatorExtensionsTests.cs b/TJC.StringExtensions.Tests/Separator/DictionarySeparatorExtensionsTests.cs index b527180..fc47c7f 100644 --- a/TJC.StringExtensions.Tests/Separator/DictionarySeparatorExtensionsTests.cs +++ b/TJC.StringExtensions.Tests/Separator/DictionarySeparatorExtensionsTests.cs @@ -5,13 +5,12 @@ namespace TJC.StringExtensions.Tests.Separator; [TestClass] public class DictionarySeparatorExtensionsTests { - private readonly Dictionary _samples = - new() - { - { 1, "one" }, - { 2, "two" }, - { 3, "three" }, - }; + private readonly Dictionary _samples = new() + { + { 1, "one" }, + { 2, "two" }, + { 3, "three" }, + }; [TestMethod] public void JoinBothTest()