From 637b0b47ee67a20c89b9c0093576ee41228ee998 Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Sun, 18 Feb 2018 00:13:11 -0700 Subject: [PATCH] basicauth: Make test pass with Go 1.10 --- caddyhttp/basicauth/basicauth_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caddyhttp/basicauth/basicauth_test.go b/caddyhttp/basicauth/basicauth_test.go index be49d3e3..71255f76 100644 --- a/caddyhttp/basicauth/basicauth_test.go +++ b/caddyhttp/basicauth/basicauth_test.go @@ -171,7 +171,7 @@ md5:$apr1$l42y8rex$pOA2VJ0x/0TwaFeAF9nX61` htfh, err := ioutil.TempFile("", "basicauth-") if err != nil { - t.Skipf("Error creating temp file (%v), will skip htpassword test") + t.Skip("Error creating temp file, will skip htpassword test") return } defer os.Remove(htfh.Name())