Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Akochavi committed Feb 6, 2023
1 parent c0d98dc commit c0e3774
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,9 @@ def test_no_op_tracer_provider(self, request_mock):
)
es = Elasticsearch()
res = es.get(index="test-index", doc_type="_doc", id=1)
self.assertEqual(res.get('found'), json.loads(response_payload).get('found'))
self.assertEqual(
res.get("found"), json.loads(response_payload).get("found")
)

spans_list = self.get_finished_spans()
self.assertEqual(len(spans_list), 0)

0 comments on commit c0e3774

Please sign in to comment.