diff options
author | Dave Z <dzaikos@users.noreply.github.com> | 2018-07-03 00:37:07 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@miniflux.net> | 2018-07-02 21:37:07 -0700 |
commit | d3b48b76955d8c0668f50242350ad77c22196a60 (patch) | |
tree | 6d408a3b4eac419de549c73c05f39f7ac75df3d1 | |
parent | 29131d4ee656ab8c659bd5219b7eed5d4d64daa5 (diff) |
Update unit test for Sans-Serif theme
-rw-r--r-- | model/theme_test.go | 2 |
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`) } |