From 3fc84235dd2ce76eaf7ec140ac1754b5370305bb Mon Sep 17 00:00:00 2001 From: Eric Biagiotti Date: Mon, 11 Feb 2019 09:58:11 -0500 Subject: [PATCH] 14745: Adds gocheck hook to go test for azure dirver Arvados-DCO-1.1-Signed-off-by: Eric Biagiotti --- lib/cloud/azure/azure_test.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/cloud/azure/azure_test.go b/lib/cloud/azure/azure_test.go index b496d3b3fb..e924aa6106 100644 --- a/lib/cloud/azure/azure_test.go +++ b/lib/cloud/azure/azure_test.go @@ -35,6 +35,7 @@ import ( "net" "net/http" "os" + "testing" "time" "git.curoverse.com/arvados.git/lib/cloud" @@ -52,6 +53,11 @@ import ( check "gopkg.in/check.v1" ) +// Gocheck boilerplate +func Test(t *testing.T) { + check.TestingT(t) +} + type AzureInstanceSetSuite struct{} var _ = check.Suite(&AzureInstanceSetSuite{}) -- 2.30.2