Fix TOML inline table definition in Tests

This commit is contained in:
Eric Duncan
2020-10-29 09:26:16 -07:00
committed by Maksym Pavlenko
parent 1ae7f09e02
commit 40ad9a4e32
+10 -11
View File
@@ -41,17 +41,16 @@ timeout = 15
quality = "low"
filters = { title = "regex for title here" }
clean = { keep_last = 10 }
custom = {
cover_art = "http://img",
cover_art_quality = "high",
category = "TV",
subcategories = ["1", "2"],
explicit = true,
lang = "en",
author = "Mrs. Smith ([email protected])",
ownerName = "Mrs. Smith",
ownerEmail = "[email protected]"
}
[feeds.XYZ.custom]
cover_art = "http://img"
cover_art_quality = "high"
category = "TV"
subcategories = ["1", "2"]
explicit = true
lang = "en"
author = "Mrs. Smith ([email protected])"
ownerName = "Mrs. Smith"
ownerEmail = "[email protected]"
`
path := setup(t, file)
defer os.Remove(path)