From 963f65cb33f175d0820fcd08433e12bdfe6fe294 Mon Sep 17 00:00:00 2001 From: Srikanth Chekuri Date: Sun, 22 Nov 2020 01:27:52 +0530 Subject: [PATCH] Fix lint --- .../tests/pymongo/test_pymongo_functional.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tests/opentelemetry-docker-tests/tests/pymongo/test_pymongo_functional.py b/tests/opentelemetry-docker-tests/tests/pymongo/test_pymongo_functional.py index 149c78905..d662014f1 100644 --- a/tests/opentelemetry-docker-tests/tests/pymongo/test_pymongo_functional.py +++ b/tests/opentelemetry-docker-tests/tests/pymongo/test_pymongo_functional.py @@ -53,9 +53,7 @@ class TestFunctionalPymongo(TestBase): self.assertIsNotNone(pymongo_span.parent) self.assertIs(pymongo_span.parent, root_span.get_span_context()) self.assertIs(pymongo_span.kind, trace_api.SpanKind.CLIENT) - self.assertEqual( - pymongo_span.attributes["db.name"], MONGODB_DB_NAME - ) + self.assertEqual(pymongo_span.attributes["db.name"], MONGODB_DB_NAME) self.assertEqual( pymongo_span.attributes["net.peer.name"], MONGODB_HOST )