Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix test cases
  • Loading branch information
ocelotl committed Jul 6, 2022
commit d2f806bc949bdd76d454f270e55b01424b594577
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ def tearDown(self):
self.server.stop(None)

def test_exporting(self):
self.assertEqual(self.exporter.exporting, "metrics")
self.assertEqual(self.exporter._exporting, "metrics")

@patch(
"opentelemetry.exporter.otlp.proto.grpc.exporter.ssl_channel_credentials"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ def tearDown(self):
self.server.stop(None)

def test_exporting(self):
self.assertEqual(self.exporter.exporting, "traces")
self.assertEqual(self.exporter._exporting, "traces")

@patch.dict(
"os.environ",
Expand Down