test: Fix broken tests due to mistakenly removed whitespace

json-serializing-nullable-fields-issue
Robert Dailey 9 months ago
parent c190d5e6d6
commit b79a71a1cf

@ -58,12 +58,13 @@ public class ConfigSaverTest : TrashLibIntegrationFixture
sut.Save(config, destFile);
var expectedYaml =
const string expectedYaml =
"""
radarr:
instance1:
api_key: apikey
base_url: http://baseurl.com
""";
var expectedFile = Fs.GetFile(destFile);

@ -39,9 +39,11 @@ public class ConfigurationLoaderTest : TrashLibIntegrationFixture
var str = new StringBuilder($"{sectionName}:");
const string templateYaml =
"""
instance{1}:
base_url: http://{0}
api_key: abc
""";
var counter = 0;

Loading…
Cancel
Save