From 3ae69bf66a2370005233316cca543b9446f85daa Mon Sep 17 00:00:00 2001 From: dmaclach Date: Mon, 12 Nov 2018 07:58:11 -0800 Subject: Fix up testharness. (#189) There were quotes around the test harness path in the project that was making it so Xcode couldn't find it to run it. --- GTM.xcodeproj/project.pbxproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GTM.xcodeproj/project.pbxproj b/GTM.xcodeproj/project.pbxproj index 640b888..01ced21 100644 --- a/GTM.xcodeproj/project.pbxproj +++ b/GTM.xcodeproj/project.pbxproj @@ -1349,7 +1349,7 @@ INFOPLIST_FILE = "UnitTest-Info.plist"; PRODUCT_BUNDLE_IDENTIFIER = "com.google.${PRODUCT_NAME:rfc1034identifier}"; PRODUCT_NAME = "UnitTest-AppKit"; - TEST_HOST = "\"$(BUILT_PRODUCTS_DIR)/GTMUIUnitTestingHarness.app/Contents/MacOS/GTMUIUnitTestingHarness\""; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/GTMUIUnitTestingHarness.app/Contents/MacOS/GTMUIUnitTestingHarness"; }; name = Debug; }; @@ -1453,7 +1453,7 @@ INFOPLIST_FILE = "UnitTest-Info.plist"; PRODUCT_BUNDLE_IDENTIFIER = "com.google.${PRODUCT_NAME:rfc1034identifier}"; PRODUCT_NAME = "UnitTest-AppKit"; - TEST_HOST = "\"$(BUILT_PRODUCTS_DIR)/GTMUIUnitTestingHarness.app/Contents/MacOS/GTMUIUnitTestingHarness\""; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/GTMUIUnitTestingHarness.app/Contents/MacOS/GTMUIUnitTestingHarness"; }; name = Release; }; -- cgit v1.2.3