diff options
author | Matthew Holt <mholt@users.noreply.github.com> | 2022-09-13 13:43:21 -0600 |
---|---|---|
committer | Matthew Holt <mholt@users.noreply.github.com> | 2022-09-13 13:43:21 -0600 |
commit | 754fe4f7b4dddbfc7a8ee7fee405cee057da858e (patch) | |
tree | 56fd84493e7a076f649c3c5d5fc5474707e72aad /caddytest | |
parent | 20d487be573424e7647b5a157754f6e284554e23 (diff) |
httpcaddyfile: Fix sorting of repeated directives
Fixes #5037
Diffstat (limited to 'caddytest')
-rw-r--r-- | caddytest/caddytest.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/caddytest/caddytest.go b/caddytest/caddytest.go index 9addd14..4fb3394 100644 --- a/caddytest/caddytest.go +++ b/caddytest/caddytest.go @@ -100,7 +100,7 @@ func (tc *Tester) InitServer(rawConfig string, configType string) { tc.t.Fail() } if err := tc.ensureConfigRunning(rawConfig, configType); err != nil { - tc.t.Logf("failed ensurng config is running: %s", err) + tc.t.Logf("failed ensuring config is running: %s", err) tc.t.Fail() } } |