Skip to content

Commit

Permalink
Updated contrib SHA
Browse files Browse the repository at this point in the history
  • Loading branch information
owais committed Aug 30, 2021
1 parent 8d436da commit 8a9e779
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
# Otherwise, set variable to the commit of your branch on
# opentelemetry-python-contrib which is compatible with these Core repo
# changes.
CONTRIB_REPO_SHA: 71b0ca7d80a2c717bdee12c11ede6d803ac980df
CONTRIB_REPO_SHA: 2319247930d8aed1c67a10c72fe3c1d0481fdbc6

jobs:
build:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,7 @@ def test_bad_solution_to_set_parent(self):
parent_span = get_one_by_operation_name(spans, "parent")
self.assertIsNotNone(parent_span)

spans = [s for s in spans if s.name == "send"]
spans = [s for s in spans if s != parent_span]
self.assertEqual(len(spans), 2)
for span in spans:
if span == parent_span:
continue
self.assertIsChildOf(span, parent_span)

0 comments on commit 8a9e779

Please sign in to comment.