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

Commit a54bc38

Browse files
committed
Fix test failing on appveyor due to line endings.
Seems that `\r\n` is needed here.
1 parent a9ad05b commit a54bc38

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -339,8 +339,7 @@ public async Task DisplaysErrorMessageWhenExceptionOccurs()
339339

340340
await vm.CloneCommand.ExecuteAsync(null);
341341

342-
notificationService.Received().ShowError(@"Failed to clone the repository 'octokit'
343-
Email [email protected] if you continue to have problems.");
342+
notificationService.Received().ShowError("Failed to clone the repository 'octokit'\r\nEmail [email protected] if you continue to have problems.");
344343
}
345344

346345
[Fact]

0 commit comments

Comments
 (0)