Replaced Uri with HttpUri.

This commit is contained in:
Taloth Saldono
2016-03-01 00:33:28 +01:00
parent 7c54fa70d7
commit 23871503a2
29 changed files with 356 additions and 111 deletions
@@ -20,7 +20,7 @@ namespace NzbDrone.Core.Test.Http
var newRequest = Subject.PreRequest(request);
newRequest.Url.AbsoluteUri.Should().Be("http://torcache.net/download/123.torrent");
newRequest.Url.FullUri.Should().Be("http://torcache.net/download/123.torrent");
}
[Test]
@@ -41,7 +41,7 @@ namespace NzbDrone.Core.Test.Http
var newRequest = Subject.PreRequest(request);
newRequest.Url.AbsoluteUri.Should().Be(url);
newRequest.Url.FullUri.Should().Be(url);
}
}
}