improved clone injection.

This commit is contained in:
kay.one 2013-09-10 00:01:27 -07:00
commit b3c9217412
3 changed files with 8 additions and 5 deletions

View file

@ -1,5 +1,7 @@
using FluentAssertions;
using System.Net;
using FluentAssertions;
using NUnit.Framework;
using NzbDrone.Api.History;
namespace NzbDrone.Integration.Test
{
@ -9,7 +11,7 @@ namespace NzbDrone.Integration.Test
[Test]
public void history_should_be_empty()
{
var history = History.GetPaged(1,15,"date","desc");
var history = History.GetPaged(1, 15, "date", "desc");
history.Records.Count.Should().Be(0);
history.Page.Should().Be(1);