(
function_invocation_value: dict[str, Any],
)
| 37 | |
| 38 | |
| 39 | def make_expression_graph( |
| 40 | function_invocation_value: dict[str, Any], |
| 41 | ) -> dict[str, Any]: |
| 42 | return { |
| 43 | 'result': '0', |
| 44 | 'values': {'0': {'functionInvocationValue': function_invocation_value}}, |
| 45 | } |
| 46 | |
| 47 | |
| 48 | class ImageTest(apitestcase.ApiTestCase): |
no outgoing calls
no test coverage detected