mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Package cleanup
This commit is contained in:
parent
1ace2d5b22
commit
5ecbdd3e64
105 changed files with 151 additions and 25190 deletions
|
@ -11,7 +11,7 @@ namespace NzbDrone.Common.Test
|
|||
[Test]
|
||||
public void DownloadString_should_be_able_to_dowload_text_file()
|
||||
{
|
||||
var jquery = new WebClientProvider().DownloadString("http://www.google.com/robots.txt");
|
||||
var jquery = new HttpProvider().DownloadString("http://www.google.com/robots.txt");
|
||||
|
||||
jquery.Should().NotBeBlank();
|
||||
jquery.Should().Contain("Sitemap");
|
||||
|
@ -23,7 +23,7 @@ namespace NzbDrone.Common.Test
|
|||
[ExpectedException]
|
||||
public void DownloadString_should_throw_on_error(string url)
|
||||
{
|
||||
var jquery = new WebClientProvider().DownloadString(url);
|
||||
var jquery = new HttpProvider().DownloadString(url);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue