From a83a9acd20a266dab049eb42ad438fb3245c8912 Mon Sep 17 00:00:00 2001 From: Pavan Navarathna <6504783+pavannd1@users.noreply.github.com> Date: Tue, 24 Sep 2024 18:17:59 -0700 Subject: [PATCH] Fix AWSEBSSuite.TestGetRegions issue caused by check.v1 refactor --- pkg/blockstorage/awsebs/awsebs_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/blockstorage/awsebs/awsebs_test.go b/pkg/blockstorage/awsebs/awsebs_test.go index 5859ae100a..ff4794f86f 100644 --- a/pkg/blockstorage/awsebs/awsebs_test.go +++ b/pkg/blockstorage/awsebs/awsebs_test.go @@ -107,5 +107,5 @@ func (s AWSEBSSuite) TestGetRegions(c *check.C) { regions, err := ebsp.GetRegions(ctx) c.Assert(err, check.IsNil) - c.Assert(regions, check.IsNil) + c.Assert(regions, check.NotNil) }