We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7cdf87 commit 90b5fc7Copy full SHA for 90b5fc7
1 file changed
util/opentelemetry-util-genai/tests/test_workflow_invocation.py
@@ -21,10 +21,6 @@ def test_custom_name(self):
21
invocation = WorkflowInvocation(name="customer_support_pipeline")
22
assert invocation.name == "customer_support_pipeline"
23
24
- def test_custom_operation_name(self):
25
- invocation = WorkflowInvocation(operation_name="run_pipeline")
26
- assert invocation.operation_name == "run_pipeline"
27
-
28
def test_with_input_messages(self):
29
msg = InputMessage(role="user", parts=[Text(content="hello")])
30
invocation = WorkflowInvocation(input_messages=[msg])
0 commit comments