Skip to content

Commit

Permalink
[Issue open-telemetry#1111] Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
wilguo committed Sep 16, 2020
1 parent 2c05bc0 commit db9673f
Showing 1 changed file with 5 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def test_export(self):
"key_bool": "False",
"key_string": "hello_world",
"key_float": "111.22",
"ot.status_code":0
"ot.status_code": 0,
},
"annotations": [
{
Expand All @@ -232,10 +232,7 @@ def test_export(self):
"duration": durations[1] // 10 ** 3,
"localEndpoint": local_endpoint,
"kind": None,
"tags": {
"key_resource": "some_resource",
"ot.status_code":0
},
"tags": {"key_resource": "some_resource", "ot.status_code": 0},
"annotations": None,
},
{
Expand All @@ -249,7 +246,7 @@ def test_export(self):
"tags": {
"key_string": "hello_world",
"key_resource": "some_resource",
"ot.status_code":0
"ot.status_code": 0,
},
"annotations": None,
},
Expand All @@ -264,7 +261,7 @@ def test_export(self):
"tags": {
"otel.instrumentation_library.name": "name",
"otel.instrumentation_library.version": "version",
"ot.status_code":0
"ot.status_code": 0,
},
"annotations": None,
},
Expand Down Expand Up @@ -330,9 +327,7 @@ def test_zero_padding(self):
"duration": duration // 10 ** 3,
"localEndpoint": local_endpoint,
"kind": None,
"tags": {
"ot.status_code":0
},
"tags": {"ot.status_code": 0},
"annotations": None,
"debug": True,
"parentId": "0aaaaaaaaaaaaaaa",
Expand Down

0 comments on commit db9673f

Please sign in to comment.