diff --git a/caddyhttp/caddyhttp_test.go b/caddyhttp/caddyhttp_test.go index 4e759b54b..47b084a7b 100644 --- a/caddyhttp/caddyhttp_test.go +++ b/caddyhttp/caddyhttp_test.go @@ -25,9 +25,9 @@ import ( // ensure that the standard plugins are in fact plugged in // and registered properly; this is a quick/naive way to do it. func TestStandardPlugins(t *testing.T) { - numStandardPlugins := 31 // importing caddyhttp plugs in this many plugins + numStandardPlugins := 32 // importing caddyhttp plugs in this many plugins s := caddy.DescribePlugins() - if got, want := strings.Count(s, "\n"), numStandardPlugins+7; got != want { + if got, want := strings.Count(s, "\n"), numStandardPlugins+4; got != want { t.Errorf("Expected all standard plugins to be plugged in, got:\n%s", s) } }