From c468b114e450b04db792edb8f2760c06b4f5e8d8 Mon Sep 17 00:00:00 2001 From: Alexander Morozov Date: Thu, 10 Sep 2015 14:04:33 -0700 Subject: [PATCH] Fix format call in tests Signed-off-by: Alexander Morozov --- config/setup/basicauth_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/setup/basicauth_test.go b/config/setup/basicauth_test.go index 7b0ba3d9..c5a80530 100644 --- a/config/setup/basicauth_test.go +++ b/config/setup/basicauth_test.go @@ -40,7 +40,7 @@ md5:$apr1$l42y8rex$pOA2VJ0x/0TwaFeAF9nX61` var skipHtpassword bool htfh, err := ioutil.TempFile("", "basicauth-") if err != nil { - t.Logf("Error creating temp file (%v), will skip htpassword test") + t.Logf("Error creating temp file (%v), will skip htpassword test", err) skipHtpassword = true } else { if _, err = htfh.Write([]byte(htpasswdFile)); err != nil {