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

Commit 09347ae

Browse files
Fixing test
1 parent 3d2b580 commit 09347ae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/GitHub.App.UnitTests/ViewModels/Dialog/Clone/RepositoryCloneViewModelTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public async Task PathError_Is_Not_Set_When_No_Repository_Selected()
166166

167167
target.Path = "d:\\exists";
168168

169-
Assert.That(target.PathError, Is.Null);
169+
Assert.That(target.PathWarning, Is.Null);
170170
}
171171

172172
[Test]
@@ -176,7 +176,7 @@ public async Task PathError_Is_Set_For_Existing_File_At_Destination()
176176
SetRepository(target.GitHubTab, CreateRepositoryModel("owner", "repo"));
177177
target.Path = "d:\\exists";
178178

179-
Assert.That(target.PathError, Is.EqualTo(Resources.DestinationAlreadyExists));
179+
Assert.That(target.PathWarning, Is.EqualTo(Resources.DestinationAlreadyExists));
180180
}
181181

182182
[Test]

0 commit comments

Comments
 (0)