Skip to content

Commit 91e1929

Browse files
committed
Respond to review comments
1 parent 895d3ba commit 91e1929

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

exporter/opentelemetry-exporter-otlp-proto-grpc/tests/test_otlp_exporter_mixin.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -82,14 +82,6 @@ class OTLPSpanExporterForTesting(
8282
_result = SpanExportResult
8383
_stub = TraceServiceStub
8484

85-
def __init__(self, insecure=None, endpoint=None):
86-
super().__init__(
87-
**{
88-
"insecure": insecure,
89-
"endpoint": endpoint,
90-
}
91-
)
92-
9385
def _translate_data(
9486
self, data: Sequence[ReadableSpan]
9587
) -> ExportTraceServiceRequest:
@@ -153,7 +145,7 @@ def __init__(
153145
target=None,
154146
args=(),
155147
):
156-
super().__init__(None, target, None, args, None)
148+
super().__init__(target=target, args=args)
157149
self._return = None
158150

159151
def run(self):

0 commit comments

Comments
 (0)