Skip to content

Commit 993ed42

Browse files
committed
test: Adds additional assertion to 'test_resource_detector_entry_points_tolerate_missing_detector'
1 parent a47ffe3 commit 993ed42

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

opentelemetry-sdk/tests/resources/test_resources.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -806,5 +806,7 @@ def test_resource_detector_entry_points_host(self):
806806
)
807807
def test_resource_detector_entry_points_tolerate_missing_detector(self):
808808
resource = Resource({}).create()
809+
self.assertEqual(
810+
resource.attributes["telemetry.sdk.language"], "python"
811+
)
809812
self.assertIn(HOST_NAME, resource.attributes)
810-
self.assertIn(HOST_ARCH, resource.attributes)

0 commit comments

Comments
 (0)