summaryrefslogtreecommitdiff
path: root/funcs/gcp_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'funcs/gcp_test.go')
-rw-r--r--funcs/gcp_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/funcs/gcp_test.go b/funcs/gcp_test.go
index b235bce8..91ab54fb 100644
--- a/funcs/gcp_test.go
+++ b/funcs/gcp_test.go
@@ -20,7 +20,7 @@ func TestCreateGCPFuncs(t *testing.T) {
fmap := CreateGCPFuncs(ctx)
actual := fmap["gcp"].(func() interface{})
- assert.Same(t, ctx, actual().(*GcpFuncs).ctx)
+ assert.Equal(t, ctx, actual().(*GcpFuncs).ctx)
})
}
}