Skip to content

Commit

Permalink
Update some tests for newer clang error messages.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasvl committed Jun 6, 2019
1 parent 1c95097 commit 1c8a7a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions objectivec/Tests/GPBMessageTests+Runtime.m
Original file line number Diff line number Diff line change
Expand Up @@ -1482,7 +1482,7 @@ - (void)testProto2OneofBasicBehaviors {
[msg release];
msg = [[Message2 alloc] init];

uint32_t values[] = {
int32_t values[] = {
Message2_O_OneOfCase_OneofInt32,
Message2_O_OneOfCase_OneofInt64,
Message2_O_OneOfCase_OneofUint32,
Expand Down Expand Up @@ -1992,7 +1992,7 @@ - (void)testProto3OneofBasicBehaviors {
[msg release];
msg = [[Message3 alloc] init];

uint32_t values[] = {
int32_t values[] = {
Message3_O_OneOfCase_OneofInt32,
Message3_O_OneOfCase_OneofInt64,
Message3_O_OneOfCase_OneofUint32,
Expand Down Expand Up @@ -2113,7 +2113,7 @@ - (void)testProto2OneofSetToDefault {

Message2 *msg = [[Message2 alloc] init];

uint32_t values[] = {
int32_t values[] = {
Message2_O_OneOfCase_OneofInt32,
Message2_O_OneOfCase_OneofInt64,
Message2_O_OneOfCase_OneofUint32,
Expand Down Expand Up @@ -2242,7 +2242,7 @@ - (void)testProto3OneofSetToZero {

Message3 *msg = [[Message3 alloc] init];

uint32_t values[] = {
int32_t values[] = {
Message3_O_OneOfCase_OneofInt32,
Message3_O_OneOfCase_OneofInt64,
Message3_O_OneOfCase_OneofUint32,
Expand Down

0 comments on commit 1c8a7a1

Please sign in to comment.