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

Commit 9b0e809

Browse files
committed
Ignore whitespace in URL search
1 parent 7c84a8f commit 9b0e809

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ public class TheFilterProperty
1818
[TestCase("", "owner", "name", "https://github.com/owner/name", 1)]
1919
[TestCase("owner", "owner", "name", "https://github.com/owner/name", 1)]
2020
[TestCase("name", "owner", "name", "https://github.com/owner/name", 1)]
21-
[TestCase("owner/name ", "owner", "name", "https://github.com/owner/name", 1, Description = "Ignore whitespace in search")]
21+
[TestCase("owner/name ", "owner", "name", "https://github.com/owner/name", 1, Description = "Ignore whitespace in owner/name search")]
22+
[TestCase("https://github.com/owner/name ", "owner", "name", "https://github.com/owner/name", 1, Description = "Ignore whitespace in URL search")]
2223
[TestCase("owner/name", "owner", "name", "https://github.com/owner/name", 1)]
2324
[TestCase("OWNER/NAME", "owner", "name", "https://github.com/owner/name", 1)]
2425
[TestCase("https://github.com/owner/name", "owner", "name", "https://github.com/owner/name", 1)]

0 commit comments

Comments
 (0)