Skip to content

Commit 3729de1

Browse files
committed
Reformat code
1 parent 210a005 commit 3729de1

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.config/dotnet-tools.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
"isRoot": true,
44
"tools": {
55
"dotnet-format": {
6-
"version": "4.1.131201",
6+
"version": "5.1.250801",
77
"commands": [
88
"dotnet-format"
99
]
1010
}
1111
}
12-
}
12+
}

test/CommandLineUtils.Tests/FilePathExistsAttributeTests.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ public void ValidatesFilesMustExist(string? filePath)
5353

5454
public static TheoryData<string?> BadFilePaths
5555
=> new()
56-
{
57-
"notfound.txt",
58-
"\0",
59-
null,
60-
string.Empty,
61-
};
56+
{
57+
"notfound.txt",
58+
"\0",
59+
null,
60+
string.Empty,
61+
};
6262

6363
[Fact]
6464
public void ValidatesFilesRelativeToAppContext()

test/CommandLineUtils.Tests/ValueParserProviderTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -642,10 +642,10 @@ public void ItParsesParamofT(Type type, string input, object expected)
642642

643643
public static TheoryData<Type, string, object> TupleData
644644
=> new()
645-
{
646-
{ typeof((bool, int?)), "", (true, default(int?)) },
647-
{ typeof((bool, int)), "123", (true, 123) },
648-
};
645+
{
646+
{ typeof((bool, int?)), "", (true, default(int?)) },
647+
{ typeof((bool, int)), "123", (true, 123) },
648+
};
649649

650650
private static readonly MethodInfo s_itParsesOptionOfTImpl
651651
= typeof(ValueParserProviderTests).GetMethod(nameof(ItParsesOptionOfTImpl), BindingFlags.NonPublic | BindingFlags.Instance)!;

0 commit comments

Comments
 (0)