From 6919f65491466db0c912aafbb3d467a0aac2c5d1 Mon Sep 17 00:00:00 2001 From: Ali Alnosairi <144171192+Ali-Alnosairi@users.noreply.github.com> Date: Wed, 18 Sep 2024 18:40:27 +0300 Subject: [PATCH] Remove duplicated shutdown() calls as it can be called once (#4188) --- .../integration_test/test_exponential_bucket_histogram.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/opentelemetry-sdk/tests/metrics/integration_test/test_exponential_bucket_histogram.py b/opentelemetry-sdk/tests/metrics/integration_test/test_exponential_bucket_histogram.py index 6574bf43357..a6750eecf54 100644 --- a/opentelemetry-sdk/tests/metrics/integration_test/test_exponential_bucket_histogram.py +++ b/opentelemetry-sdk/tests/metrics/integration_test/test_exponential_bucket_histogram.py @@ -135,8 +135,6 @@ def test_synchronous_delta_temporality(self): results.append(reader.get_metrics_data()) - provider.shutdown() - for metrics_data in results: self.assertIsNone(metrics_data)