summaryrefslogtreecommitdiff
path: root/internal/config/config_test.go
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-04-22 15:58:40 +0300
committerPaul Buetow <paul@buetow.org>2026-04-22 15:58:40 +0300
commit0ccc8073852895996ed70c4b2a86c460e3a3ddae (patch)
treef89e1b1bf20e551c1cce0ca745c5d29a247737d9 /internal/config/config_test.go
parent664c7d300c4a9326e5aebbd84a20cee5af829a0b (diff)
Remove weak comic style presets
Diffstat (limited to 'internal/config/config_test.go')
-rw-r--r--internal/config/config_test.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/internal/config/config_test.go b/internal/config/config_test.go
index 1ae967c..902f432 100644
--- a/internal/config/config_test.go
+++ b/internal/config/config_test.go
@@ -53,10 +53,6 @@ styles:
- custom 90s action
manga:
- custom manga
- cyberpunk:
- - custom cyberpunk
- golden_age:
- - custom golden age
horror:
- custom horror
watercolor:
@@ -116,12 +112,6 @@ narration:
if got, want := len(cfg.Styles.Manga), 1; got != want || cfg.Styles.Manga[0] != "custom manga" {
t.Fatalf("Styles.Manga = %#v, want %q", cfg.Styles.Manga, "custom manga")
}
- if got, want := len(cfg.Styles.Cyberpunk), 1; got != want || cfg.Styles.Cyberpunk[0] != "custom cyberpunk" {
- t.Fatalf("Styles.Cyberpunk = %#v, want %q", cfg.Styles.Cyberpunk, "custom cyberpunk")
- }
- if got, want := len(cfg.Styles.GoldenAge), 1; got != want || cfg.Styles.GoldenAge[0] != "custom golden age" {
- t.Fatalf("Styles.GoldenAge = %#v, want %q", cfg.Styles.GoldenAge, "custom golden age")
- }
if got, want := len(cfg.Styles.Horror), 1; got != want || cfg.Styles.Horror[0] != "custom horror" {
t.Fatalf("Styles.Horror = %#v, want %q", cfg.Styles.Horror, "custom horror")
}