summaryrefslogtreecommitdiff
path: root/internal/repository
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-05-09 22:20:03 +0300
committerPaul Buetow <paul@buetow.org>2026-05-09 22:20:03 +0300
commit2d58ee0600a5efc8c625ace603d8613b5f6d0ab8 (patch)
treede02e62bea1d04ab3084af8276f3fe79a5983661 /internal/repository
parent05a8c2ba95ec9ed81898fa3545f36c96760b48df (diff)
style: gofmt and goimports formatting fixes
Diffstat (limited to 'internal/repository')
-rw-r--r--internal/repository/podcast_test.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/internal/repository/podcast_test.go b/internal/repository/podcast_test.go
index 52ce9dc..312508f 100644
--- a/internal/repository/podcast_test.go
+++ b/internal/repository/podcast_test.go
@@ -61,11 +61,11 @@ func TestPodcastRepo_CRUD(t *testing.T) {
// Create episode.
episode := &model.PodcastEpisode{
- FeedID: feedID,
- GUID: "ep-1",
- Title: "Episode 1",
- EpisodeURL: "https://example.com/ep1.mp3",
- CreatedAt: now,
+ FeedID: feedID,
+ GUID: "ep-1",
+ Title: "Episode 1",
+ EpisodeURL: "https://example.com/ep1.mp3",
+ CreatedAt: now,
}
epID, err := s.CreateEpisode(ctx, episode)
if err != nil {