Skip to content

Commit

Permalink
Fix TOML inline table definition in Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
eduncan911 authored and mxpv committed Oct 29, 2020
1 parent 1ae7f09 commit 40ad9a4
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions pkg/config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (mrs@smith.org)",
ownerName = "Mrs. Smith",
ownerEmail = "mrs@smith.org"
}
[feeds.XYZ.custom]
cover_art = "http://img"
cover_art_quality = "high"
category = "TV"
subcategories = ["1", "2"]
explicit = true
lang = "en"
author = "Mrs. Smith (mrs@smith.org)"
ownerName = "Mrs. Smith"
ownerEmail = "mrs@smith.org"
`
path := setup(t, file)
defer os.Remove(path)
Expand Down

3 comments on commit 40ad9a4

@shelomito12
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you guys!
@mxpv By any chance, were you able to update https://hub.docker.com/r/mxpv/podsync as well? - thanks in advance.

@mxpv
Copy link
Owner

@mxpv mxpv commented on 40ad9a4 Oct 29, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep, will rollout a new release soon.

@shelomito12
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull rate limits for certain users are being introduced to Docker Hub starting November 2nd. 🤔

Please sign in to comment.