We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26f5d32 commit 8eda7b6Copy full SHA for 8eda7b6
instrumentation/opentelemetry-instrumentation-falcon/tests/test_falcon.py
@@ -88,6 +88,10 @@ def _test_method(self, method):
88
span.name, "HelloWorldResource.on_{0}".format(method.lower())
89
)
90
self.assertEqual(span.status.status_code, StatusCode.UNSET)
91
+ self.assertEqual(
92
+ span.status.description,
93
+ None,
94
+ )
95
self.assertSpanHasAttributes(
96
span,
97
{
@@ -113,6 +117,10 @@ def test_404(self):
113
117
span = spans[0]
114
118
self.assertEqual(span.name, "HTTP GET")
115
119
self.assertEqual(span.status.status_code, StatusCode.ERROR)
120
121
122
+ "NotFound",
123
116
124
125
126
0 commit comments