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

Commit 7c84a8f

Browse files
committed
Check that we ignore whitespace in search
1 parent 435a838 commit 7c84a8f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ 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")]
2122
[TestCase("owner/name", "owner", "name", "https://github.com/owner/name", 1)]
2223
[TestCase("OWNER/NAME", "owner", "name", "https://github.com/owner/name", 1)]
2324
[TestCase("https://github.com/owner/name", "owner", "name", "https://github.com/owner/name", 1)]

0 commit comments

Comments
 (0)