We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d96f01e commit 07c15f0Copy full SHA for 07c15f0
src/Http/Http/test/BindingAddressTests.cs
@@ -70,8 +70,6 @@ public void FromUriThrowsForUrlsWithWrongFilePathOnWindows(string url)
70
[InlineData("http://www.example.com:5000", "http", "www.example.com", 5000, "", null)]
71
[InlineData("https://www.example.com:5000", "https", "www.example.com", 5000, "", null)]
72
[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")]
75
[InlineData("http://unix:5000/tmp/kestrel-test.sock", "http", "unix", 5000, "/tmp/kestrel-test.sock", "http://unix:5000/tmp/kestrel-test.sock")]
76
public void UrlsAreParsedCorrectly(string url, string scheme, string host, int port, string pathBase, string toString)
77
{
0 commit comments