Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Remove copy framwork run script causing nested framework. #55

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 0 additions & 63 deletions AFNetworkActivityLogger.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,6 @@
29D77A9E1BCC49C9005B1EF5 /* Frameworks */,
29D77A9F1BCC49C9005B1EF5 /* Headers */,
29D77AA01BCC49C9005B1EF5 /* Resources */,
29D77AAD1BCC4A12005B1EF5 /* ShellScript */,
);
buildRules = (
);
Expand All @@ -365,7 +364,6 @@
29D77AB21BCC4BDD005B1EF5 /* Headers */,
29D77AB31BCC4BDD005B1EF5 /* Resources */,
29D77AC01BCC4C7F005B1EF5 /* CopyFiles */,
29D77AC31BCC4C96005B1EF5 /* ShellScript */,
);
buildRules = (
);
Expand All @@ -384,7 +382,6 @@
29D77AC51BCC4D4D005B1EF5 /* Frameworks */,
29D77AC61BCC4D4D005B1EF5 /* Headers */,
29D77AC71BCC4D4D005B1EF5 /* Resources */,
29D77AD71BCC4DC5005B1EF5 /* ShellScript */,
);
buildRules = (
);
Expand All @@ -403,7 +400,6 @@
29D96E611BCC34CD00F571A5 /* Frameworks */,
29D96E621BCC34CD00F571A5 /* Headers */,
29D96E631BCC34CD00F571A5 /* Resources */,
29D96E771BCC36E700F571A5 /* ShellScript */,
);
buildRules = (
);
Expand Down Expand Up @@ -559,65 +555,6 @@
};
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
29D77AAD1BCC4A12005B1EF5 /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"$(SRCROOT)/Carthage/Build/Mac/AFNetworking.framework",
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/usr/local/bin/carthage copy-frameworks";
};
29D77AC31BCC4C96005B1EF5 /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"$(SRCROOT)/Carthage/Build/watchOS/AFNetworking.framework",
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/usr/local/bin/carthage copy-frameworks";
};
29D77AD71BCC4DC5005B1EF5 /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"$(SRCROOT)/Carthage/Build/tvOS/AFNetworking.framework",
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/usr/local/bin/carthage copy-frameworks";
};
29D96E771BCC36E700F571A5 /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"$(SRCROOT)/Carthage/Build/iOS/AFNetworking.framework",
);
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "/usr/local/bin/carthage copy-frameworks";
};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
297DF57D1C1F1CA2001FA807 /* Sources */ = {
isa = PBXSourcesBuildPhase;
Expand Down
2 changes: 1 addition & 1 deletion Tests/AFNetworkActivityLoggerTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ - (void)testThatFilterPredicateIsRespectedForFinishCallback {


[testLogger setFinishBlock:^(NSURLSessionTask *task, id responseObject, NSTimeInterval elapsedTime, NSError *error) {
XCTFail(@"Start block should not be called");
XCTFail(@"Finish block should not be called");
}];

NSPredicate *predicate = [NSPredicate predicateWithBlock:^BOOL(NSURLRequest * _Nonnull request, NSDictionary<NSString *,id> * _Nullable bindings) {
Expand Down