Package cleanup

This commit is contained in:
kay.one 2012-02-10 16:48:20 -08:00
commit 5ecbdd3e64
105 changed files with 151 additions and 25190 deletions

View file

@ -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);
}
}
}