Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ void CommonInit ()
"AndroidNotWorking",
"CAS",
"InetAccess",
"MobileNotWorking",
"NotWorking",
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -887,12 +887,11 @@ public void Send_Invalid ()
}

[Test]
[Category ("MobileNotWorking")] // Missing encoding
public void GetString_Many ()
{
var client = new HttpClient (CreateHandler ());
var t1 = client.GetStringAsync ("http://example.org");
var t2 = client.GetStringAsync ("http://example.org");
var t1 = client.GetStringAsync ("https://google.com");
var t2 = client.GetStringAsync ("https://google.com");
Assert.IsTrue (Task.WaitAll (new [] { t1, t2 }, WaitTimeout));
}

Expand Down
Loading