fixed ShouldBeEquivalentTo tests

This commit is contained in:
kayone 2014-08-24 18:45:44 -07:00
commit e53513a575
4 changed files with 6 additions and 6 deletions

View file

@ -23,7 +23,7 @@ namespace NzbDrone.Libraries.Test.JsonTests
var quality = new TypeWithNumbers { Int32 = Int32.MaxValue, Int64 = Int64.MaxValue, nullableWithValue = 12 };
var result = Json.Deserialize<TypeWithNumbers>(quality.ToJson());
result.ShouldBeEquivalentTo(quality);
result.ShouldBeEquivalentTo(quality, o => o.IncludingAllRuntimeProperties());
}
}
}