Include version in services Changes api call so the server knows how to redirect.

This commit is contained in:
Taloth Saldono
2015-02-07 15:56:36 +01:00
parent 955029ec43
commit 40987cc335
3 changed files with 6 additions and 4 deletions
@@ -37,7 +37,7 @@ namespace NzbDrone.Core.Test.UpdateTests
{
const string branch = "master";
UseRealHttp();
var recent = Subject.GetRecentUpdates(branch);
var recent = Subject.GetRecentUpdates(branch, new Version(2, 0));
recent.Should().NotBeEmpty();
recent.Should().OnlyContain(c => c.Hash.IsNotNullOrWhiteSpace());