Skip to content

Commit 07c15f0

Browse files
committed
removed invalid tests
1 parent d96f01e commit 07c15f0

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/Http/Http/test/BindingAddressTests.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,6 @@ public void FromUriThrowsForUrlsWithWrongFilePathOnWindows(string url)
7070
[InlineData("http://www.example.com:5000", "http", "www.example.com", 5000, "", null)]
7171
[InlineData("https://www.example.com:5000", "https", "www.example.com", 5000, "", null)]
7272
[InlineData("http://www.example.com:5000/", "http", "www.example.com", 5000, "", "http://www.example.com:5000")]
73-
[InlineData("http://foo:/tmp/kestrel-test.sock:5000/doesn't/matter", "http", "foo:", 80, "/tmp/kestrel-test.sock:5000/doesn't/matter", "http://foo::80/tmp/kestrel-test.sock:5000/doesn't/matter")]
74-
[InlineData("http://unix:foo/tmp/kestrel-test.sock", "http", "unix:foo", 80, "/tmp/kestrel-test.sock", "http://unix:foo:80/tmp/kestrel-test.sock")]
7573
[InlineData("http://unix:5000/tmp/kestrel-test.sock", "http", "unix", 5000, "/tmp/kestrel-test.sock", "http://unix:5000/tmp/kestrel-test.sock")]
7674
public void UrlsAreParsedCorrectly(string url, string scheme, string host, int port, string pathBase, string toString)
7775
{

0 commit comments

Comments
 (0)