Fixed broken tests

This commit is contained in:
Mark McDowall
2013-08-09 22:10:09 -07:00
parent 2e108620d6
commit bcb13f93ff
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ namespace NzbDrone.Core.Test.UpdateTests
updates.Should().OnlyContain(c => !string.IsNullOrWhiteSpace(c.FileName));
updates.Should().OnlyContain(c => !string.IsNullOrWhiteSpace(c.Url));
updates.Should().OnlyContain(c => c.Version != null);
updates.Should().OnlyContain(c => c.Version.Minor != 0);
updates.Should().OnlyContain(c => c.Version.Major == 2);
}
}
}