You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 26, 2026. It is now read-only.
Yields the following error in the test_my_flattened_method generated unit test:
assert args[0].parameter == struct.Value(null_value=struct.NullValue.NULL_VALUE)
E AssertionError: assert None == null_value: NULL_VALUE\n
E + where None = parameters {\n null_value: NULL_VALUE\n}\n.parameters
E + and null_value: NULL_VALUE\n = <class 'google.protobuf.struct_pb2.Value'>(null_value=0)
E + where <class 'google.protobuf.struct_pb2.Value'> = struct.Value
E + and 0 = <google.protobuf.internal.enum_type_wrapper.EnumTypeWrapper object at 0x7f85c7f3059
0>.NULL_VALUE
E + where <google.protobuf.internal.enum_type_wrapper.EnumTypeWrapper object at 0x7f85c7f30590>
= struct.NullValue
The following:
Yields the following error in the
test_my_flattened_methodgenerated unit test: