Skip to content

Commit

Permalink
Removing more files that were added during rebasing
Browse files Browse the repository at this point in the history
  • Loading branch information
deannagarcia committed May 25, 2021
1 parent 713f2d0 commit 3f8f6e9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions objectivec/Tests/GPBDescriptorTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ - (void)testOneofDescriptor {
GPBDescriptor *descriptor = [TestOneof2 descriptor];

// All fields should be listed.
XCTAssertEqual(descriptor.fields.count, 21U);
XCTAssertEqual(descriptor.fields.count, 17U);

// There are two oneofs in there.
XCTAssertEqual(descriptor.oneofs.count, 2U);
Expand All @@ -330,7 +330,7 @@ - (void)testOneofDescriptor {

GPBOneofDescriptor *oneofBar = [descriptor oneofWithName:@"bar"];
XCTAssertNotNil(oneofBar);
XCTAssertEqual(oneofBar.fields.count, 10U);
XCTAssertEqual(oneofBar.fields.count, 6U);

// Pointer comparisons.
XCTAssertEqual([oneofBar fieldWithNumber:TestOneof2_FieldNumber_BarString],
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ endif
no_warning_test.cc:
echo "// Generated from Makefile.am" > no_warning_test.cc
for FILE in $(nobase_include_HEADERS); do \
echo "#include <$${FILE}>" >> no_warning_test.cc; \
echo "#include <$${FILE}>" >> no_warning_test.cc; \
done
echo "int main(int, char**) { return 0; }" >> no_warning_test.cc

Expand Down

0 comments on commit 3f8f6e9

Please sign in to comment.