Skip to content

Commit 1ee891b

Browse files
Nenad Vicenticarturcic
authored andcommitted
Fix formatting
1 parent dba9f45 commit 1ee891b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/GitVersion.App.Tests/QuotedStringHelpersTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ private static IEnumerable<TestCaseData> SplitUnquotedTestData()
2121
};
2222
yield return new TestCaseData("one two three", ' ')
2323
{
24-
ExpectedResult = new []{ "one", "two", "three" }
24+
ExpectedResult = new[] { "one", "two", "three" }
2525
};
2626
yield return new TestCaseData("one \"two three\"", ' ')
2727
{

src/GitVersion.App/OverrideConfigOptionParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ internal void SetValue(string key, string value)
7373
else if (unwrapped.IsEnum)
7474
{
7575
try
76-
{
76+
{
7777
var parsedEnum = Enum.Parse(unwrapped, unwrappedText);
7878
pi.SetValue(_lazyConfig.Value, parsedEnum);
7979
}

0 commit comments

Comments
 (0)