aboutsummaryrefslogtreecommitdiff
path: root/GTM.xcodeproj
diff options
context:
space:
mode:
authorGravatar dmaclach <dmaclach@gmail.com>2018-11-12 07:58:11 -0800
committerGravatar GitHub <noreply@github.com>2018-11-12 07:58:11 -0800
commit3ae69bf66a2370005233316cca543b9446f85daa (patch)
treeb216d887d3f3712a02532a72fc614ee341fe4f2e /GTM.xcodeproj
parent5b80c40d4c8e8c1017733c39f7bc5ba364673708 (diff)
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.
Diffstat (limited to 'GTM.xcodeproj')
-rw-r--r--GTM.xcodeproj/project.pbxproj4
1 files 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;
};