From db9ab74a7eddcbd806f70e5ed7a36b7669f112dc Mon Sep 17 00:00:00 2001 From: RainbowMango Date: Tue, 29 Oct 2019 15:32:09 +0800 Subject: [PATCH] Deal with auto-generated files. - Update bazel by hack/update-bazel.sh --- test/instrumentation/BUILD | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/instrumentation/BUILD b/test/instrumentation/BUILD index 01002628640..75a6b7831c2 100644 --- a/test/instrumentation/BUILD +++ b/test/instrumentation/BUILD @@ -13,7 +13,6 @@ go_library( visibility = ["//visibility:private"], deps = [ "//staging/src/k8s.io/component-base/metrics:go_default_library", - "//vendor/github.com/prometheus/client_golang/prometheus:go_default_library", "//vendor/gopkg.in/yaml.v2:go_default_library", ], ) @@ -63,5 +62,5 @@ go_test( srcs = ["main_test.go"], data = glob(["testdata/**"]), embed = [":go_default_library"], - deps = ["//vendor/github.com/prometheus/client_golang/prometheus:go_default_library"], + deps = ["//staging/src/k8s.io/component-base/metrics:go_default_library"], )