Skip to content

Commit 8b3e616

Browse files
committed
Fix formatting (IDE0055)
1 parent 744ec6b commit 8b3e616

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Cake.AzureDevOps.Tests/Fakes/FakeAllSetGitClientFactory.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ protected override Mock<GitHttpClient> Setup(Mock<GitHttpClient> m)
306306
gitPullRequestToCreate.LastMergeTargetCommit = new GitCommitRef { CommitId = "78a3c113" };
307307

308308
return gitPullRequestToCreate;
309-
});
309+
});
310310

311311
m.Setup(arg => arg.UpdateCommentAsync(
312312
It.IsAny<Comment>(),
@@ -319,8 +319,8 @@ protected override Mock<GitHttpClient> Setup(Mock<GitHttpClient> m)
319319
.ReturnsAsync((Comment comment, Guid _, int _, int _, int _, object _, CancellationToken _)
320320
=> new Comment
321321
{
322-
Id = comment.Id,
323-
Content = comment.Content,
322+
Id = comment.Id,
323+
Content = comment.Content,
324324
});
325325

326326
return m;

src/Cake.AzureDevOps/ArgumentChecks.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ internal static class ArgumentChecks
1717
/// <param name="parameterName">The name of the parameter to include in any thrown exception.</param>
1818
/// <exception cref="ArgumentNullException">Thrown if <paramref name="value"/> is <c>null</c>.</exception>
1919
[DebuggerStepThrough]
20-
public static void NotNull<T>([ValidatedNotNull]this T value, string parameterName)
20+
public static void NotNull<T>([ValidatedNotNull] this T value, string parameterName)
2121
where T : class
2222
{
2323
if (value == null)
@@ -34,7 +34,7 @@ public static void NotNull<T>([ValidatedNotNull]this T value, string parameterNa
3434
/// <exception cref="ArgumentNullException">Thrown if <paramref name="value"/> is <c>null</c>.</exception>
3535
/// <exception cref="ArgumentOutOfRangeException">Thrown if <paramref name="value"/> is empty or consists only of white-space characters.</exception>
3636
[DebuggerStepThrough]
37-
public static void NotNullOrWhiteSpace([ValidatedNotNull]this string value, string parameterName)
37+
public static void NotNullOrWhiteSpace([ValidatedNotNull] this string value, string parameterName)
3838
{
3939
if (value == null)
4040
{

0 commit comments

Comments
 (0)