Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
soumyadeepm04 committed Jul 5, 2024
1 parent 65a818b commit f752b10
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion opentelemetry-sdk/tests/trace/test_trace.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,14 +173,17 @@ def test_get_tracer_sdk(self):
"schema_url",
{"key1": "value1", "key2": 6},
)

# pylint: disable=protected-access
self.assertEqual(tracer._instrumentation_scope._name, "module_name")
# pylint: disable=protected-access
self.assertEqual(
tracer._instrumentation_scope._version, "library_version"
)
# pylint: disable=protected-access
self.assertEqual(
tracer._instrumentation_scope._schema_url, "schema_url"
)
# pylint: disable=protected-access
self.assertEqual(
tracer._instrumentation_scope._attributes,
{"key1": "value1", "key2": 6},
Expand Down

0 comments on commit f752b10

Please sign in to comment.