diff --git a/exporter/coralogixexporter/package_test.go b/exporter/coralogixexporter/package_test.go index a5ed00872662..5c3305c1c0e1 100644 --- a/exporter/coralogixexporter/package_test.go +++ b/exporter/coralogixexporter/package_test.go @@ -9,9 +9,6 @@ import ( "go.uber.org/goleak" ) -// The IgnoreTopFunction call prevents catching the leak generated by opencensus -// defaultWorker.Start which at this time is part of the package's init call. -// See https://github.com/census-instrumentation/opencensus-go/issues/1191 for more information. func TestMain(m *testing.M) { - goleak.VerifyTestMain(m, goleak.IgnoreTopFunction("go.opencensus.io/stats/view.(*worker).start")) + goleak.VerifyTestMain(m) }