0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2025-01-20 22:52:58 -05:00

Fix error which lead to skipping tests in 'errors.TestErrorsParse'

This commit is contained in:
Volodymyr Galkin 2016-08-15 16:44:34 +03:00
parent ba5aeab19d
commit b830667a25

View file

@ -132,7 +132,7 @@ func TestErrorsParse(t *testing.T) {
t.Errorf("Test %d didn't error, but it should have", i)
} else if err != nil && !test.shouldErr {
t.Errorf("Test %d errored, but it shouldn't have; got '%v'", i, err)
} else {
} else if err != nil && test.shouldErr {
continue
}
if actualErrorsRule.LogFile != test.expectedErrorHandler.LogFile {