From 5176c75a0f5484a403df795e115ba3d7d683a166 Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Mon, 22 Feb 2016 13:39:05 -0500 Subject: [PATCH] Remove extra debugging from PKI tests --- builtin/logical/pki/backend_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/builtin/logical/pki/backend_test.go b/builtin/logical/pki/backend_test.go index 62973ee24d..b6c4dc1f9e 100644 --- a/builtin/logical/pki/backend_test.go +++ b/builtin/logical/pki/backend_test.go @@ -1252,10 +1252,7 @@ func generateRoleSteps(t *testing.T, useCSRs bool) []logicaltest.TestStep { } if testBitSize < roleVals.KeyBits { - t.Logf("roleVals.KeyBits: %d, testBitSize: %d, issueTestStep.ErrorOk: %t, stepCount: %d, setting true", roleVals.KeyBits, testBitSize, issueTestStep.ErrorOk, stepCount) issueTestStep.ErrorOk = true - } else { - t.Logf("roleVals.KeyBits: %d, testBitSize: %d, issueTestStep.ErrorOk: %t, stepCount: %d", roleVals.KeyBits, testBitSize, issueTestStep.ErrorOk, stepCount) } privKey, _ = rsa.GenerateKey(rand.Reader, testBitSize)