Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit bdd9b97

Browse files
committed
Fix code warning in test
1 parent 7ac6420 commit bdd9b97

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/UnitTests/GitHub.App/ViewModels/PullRequestCreationViewModelTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public async Task NullDescriptionBecomesEmptyBody()
3030
vm.PRTitle = title;
3131

3232
await vm.CreatePullRequest.ExecuteAsync();
33-
ms.Received().CreatePullRequest(repository, vm.PRTitle, String.Empty, vm.SourceBranch, vm.TargetBranch);
33+
var unused = ms.Received().CreatePullRequest(repository, vm.PRTitle, String.Empty, vm.SourceBranch, vm.TargetBranch);
3434
}
3535

3636
}

0 commit comments

Comments
 (0)