Skip to content

Commit

Permalink
Fix up testharness. (#189)
Browse files Browse the repository at this point in the history
There were quotes around the test harness path in the project that was making
it so Xcode couldn't find it to run it.
  • Loading branch information
dmaclach committed Nov 12, 2018
1 parent 5b80c40 commit 3ae69bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GTM.xcodeproj/project.pbxproj
Expand Up @@ -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;
};
Expand Down Expand Up @@ -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;
};
Expand Down

0 comments on commit 3ae69bf

Please sign in to comment.