aboutsummaryrefslogtreecommitdiffhomepage
path: root/model/theme_test.go
diff options
context:
space:
mode:
authorGravatar Dave Z <dzaikos@users.noreply.github.com>2018-07-03 00:37:07 -0400
committerGravatar Frédéric Guillot <fred@miniflux.net>2018-07-02 21:37:07 -0700
commitd3b48b76955d8c0668f50242350ad77c22196a60 (patch)
tree6d408a3b4eac419de549c73c05f39f7ac75df3d1 /model/theme_test.go
parent29131d4ee656ab8c659bd5219b7eed5d4d64daa5 (diff)
Update unit test for Sans-Serif theme
Diffstat (limited to 'model/theme_test.go')
-rw-r--r--model/theme_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/model/theme_test.go b/model/theme_test.go
index b2a8cdb..ddf58c4 100644
--- a/model/theme_test.go
+++ b/model/theme_test.go
@@ -7,7 +7,7 @@ package model
import "testing"
func TestValidateTheme(t *testing.T) {
- for _, status := range []string{"default", "black"} {
+ for _, status := range []string{"default", "black", "sansserif"} {
if err := ValidateTheme(status); err != nil {
t.Error(`A valid theme should not generate any error`)
}