mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Fix test
This commit is contained in:
parent
5668cbfb53
commit
e1a62af586
1 changed files with 5 additions and 6 deletions
|
@ -29,12 +29,11 @@ namespace NzbDrone.Core.Test.Datastore.Converters
|
|||
Subject.SetValue(_param, items);
|
||||
|
||||
var result = (string)_param.Value;
|
||||
result.Should().Be(@"[
|
||||
{
|
||||
""key"": ""word"",
|
||||
""value"": 1
|
||||
}
|
||||
]");
|
||||
|
||||
// Otherwise we run into grief compiling on windows and running on linux
|
||||
result = result.Replace("\r", "").Replace("\n", "").Replace(" ", "");
|
||||
|
||||
result.Should().Be(@"[{""key"":""word"",""value"":1}]");
|
||||
}
|
||||
|
||||
[TestCase(@"[{""key"": ""deluxe"", ""value"": 10 }]")]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue