Remove required fields in protobuf python test protos

PiperOrigin-RevId: 493096286
pull/11139/head
Jie Luo 2 years ago committed by Copybara-Service
parent 6dbd4131fa
commit 9e12e81bc2
  1. 2
      python/google/protobuf/internal/factory_test2.proto
  2. 2
      python/google/protobuf/internal/missing_enum_values.proto

@ -42,7 +42,7 @@ enum Factory2Enum {
}
message Factory2Message {
required int32 mandatory = 1;
optional int32 mandatory = 1;
optional Factory2Enum factory_2_enum = 2;
enum NestedFactory2Enum {
NESTED_FACTORY_2_VALUE_0 = 0;

@ -52,5 +52,5 @@ message TestMissingEnumValues {
}
message JustString {
required string dummy = 1;
optional string dummy = 1;
}

Loading…
Cancel
Save