Skip to content

Commit

Permalink
Fix warnings for a missing base class and pointer mismatch. (#763)
Browse files Browse the repository at this point in the history
  • Loading branch information
jszumski authored Sep 6, 2023
1 parent db309f7 commit 35c7197
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/macos/xcodeproj/NonArcObject.h
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
@interface NonArcObject
@interface NonArcObject: NSObject
@end
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// @testBundle a string with the path:
// e.g. "/Users/some/Library/Developer/Xcode/DerivedData/bazel-project-*/Build/Products/Debug-iphonesimulator/Some.xctest";
// Note: this code is effectively a noop on other test runners than Xcode's GUI
static NSURL *getWorkspacePath(NSURL *testBundle)
static NSURL *getWorkspacePath(NSString *testBundle)
{
NSArray *components = testBundle.pathComponents;
if (components.count < 4) {
Expand Down

0 comments on commit 35c7197

Please sign in to comment.