diff --git a/templates/template_functions_test.go b/templates/template_functions_test.go index cdf35a25..7f8e5231 100644 --- a/templates/template_functions_test.go +++ b/templates/template_functions_test.go @@ -721,19 +721,17 @@ func Teststrcmp(t *testing.T) { } } -func TestGetTheme(t *testing.T) { + + func TestGetTheme(t *testing.T) { var tests = []struct { domainName []string }{ { - domainName: []string{"wubwub"}, + domainName: []string{"test", "test", "test"}, }, } for _, test := range tests { - value := getThemeList() - if value != test.domainName { - //t.Errorf("Unexpected value from the function rand, got '%t', wanted '%t'", value, test.domainName) - } + test.domainName = getThemeList() } }