From a92dbefeb6cca9e3ad839cb6061735f297c3abb6 Mon Sep 17 00:00:00 2001 From: Moritz Sanft <58110325+msanft@users.noreply.github.com> Date: Thu, 28 Sep 2023 16:14:38 +0200 Subject: [PATCH] tidy Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> --- internal/crypto/crypto_test.go | 2 +- joinservice/internal/certcache/BUILD.bazel | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/internal/crypto/crypto_test.go b/internal/crypto/crypto_test.go index 3b5bb8880f..be7b0aa774 100644 --- a/internal/crypto/crypto_test.go +++ b/internal/crypto/crypto_test.go @@ -157,7 +157,7 @@ func TestX509ToPemCert(t *testing.T) { wantErr bool }{ "success": { - cert: &x509.Certificate{}, + cert: &x509.Certificate{}, }, // TODO(msanft): Add more test cases with testdata } diff --git a/joinservice/internal/certcache/BUILD.bazel b/joinservice/internal/certcache/BUILD.bazel index a6841f3c8f..c5ba663dd3 100644 --- a/joinservice/internal/certcache/BUILD.bazel +++ b/joinservice/internal/certcache/BUILD.bazel @@ -9,6 +9,7 @@ go_library( deps = [ "//internal/attestation/variant", "//internal/constants", + "//internal/crypto", "//internal/logger", "//joinservice/internal/certcache/amdkds", "@com_github_google_go_sev_guest//abi", @@ -24,6 +25,7 @@ go_test( deps = [ "//internal/attestation/variant", "//internal/constants", + "//internal/crypto", "//internal/logger", "//joinservice/internal/certcache/testdata", "@com_github_google_go_sev_guest//abi",