diff options
author | Mark D. Roth <roth@google.com> | 2016-12-05 07:03:49 -0800 |
---|---|---|
committer | Mark D. Roth <roth@google.com> | 2016-12-05 07:03:49 -0800 |
commit | 16eaa454154122a5db61cd8058794af6c5fe9077 (patch) | |
tree | bccded87d75d5fdadf2a01a6498f0b7c0cf92650 /src/objective-c/tests/Podfile | |
parent | 977f5d4e7dc8bdf21bda2e8b9a7a232f88de8e73 (diff) | |
parent | 8e9a492ad910ad66751fc1d0015e4ef051b62ddc (diff) |
Merge remote-tracking branch 'upstream/master' into client_channel_init_cleanup
Diffstat (limited to 'src/objective-c/tests/Podfile')
-rw-r--r-- | src/objective-c/tests/Podfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/objective-c/tests/Podfile b/src/objective-c/tests/Podfile index 17478fab12..5785b976f2 100644 --- a/src/objective-c/tests/Podfile +++ b/src/objective-c/tests/Podfile @@ -84,9 +84,9 @@ post_install do |installer| end # CocoaPods creates duplicated library targets of gRPC-Core when the test targets include - # non-default subspecs of gRPC-Core. All of these library targets start with prefix 'gRPC-Core.' + # non-default subspecs of gRPC-Core. All of these library targets start with prefix 'gRPC-Core' # and require the same error suppresion. - if target.name == 'gRPC-Core' or target.name.start_with?('gRPC-Core.') + if target.name.start_with?('gRPC-Core') target.build_configurations.each do |config| # TODO(zyc): Remove this setting after the issue is resolved # GPR_UNREACHABLE_CODE causes "Control may reach end of non-void |