Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tburgin committed Oct 2, 2024
1 parent aa47706 commit 45646fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Source/common/SNTFileInfoTest.m
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ - (void)testEmbeddedInfoPlist {
SNTFileInfo *sut = [[SNTFileInfo alloc] initWithPath:path];
XCTAssertNotNil([sut infoPlist]);
XCTAssertEqualObjects([sut infoPlist][@"CFBundleShortVersionString"], @"1.0");
XCTAssertEqualObjects([sut infoPlist][@"CFBundleIdentifier"], @"com.northpolesec.i386plist");
XCTAssertEqualObjects([sut infoPlist][@"CFBundleIdentifier"], @"com.google.i386plist");

// csreq is installed on all machines with Xcode installed. If you're running these tests,
// it should be available..
Expand Down
6 changes: 3 additions & 3 deletions Source/santad/SantadTest.mm
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ static void SetBinaryDataFromHexString(const char *hexStr, uint8_t *buf, size_t
}
}

static const char *kAllowedSigningID = "com.northpolesec.allowed_signing_id";
static const char *kBlockedSigningID = "com.northpolesec.blocked_signing_id";
static const char *kNoRuleMatchSigningID = "com.northpolesec.no_rule_match_signing_id";
static const char *kAllowedSigningID = "com.google.allowed_signing_id";
static const char *kBlockedSigningID = "com.google.blocked_signing_id";
static const char *kNoRuleMatchSigningID = "com.google.no_rule_match_signing_id";
static const char *kBlockedTeamID = "EQHXZ8M8AV";
static const char *kAllowedTeamID = "TJNVEKW352";
static const char *kAllowedCDHash = "dedebf2eac732d873008b17b3e44a56599dd614b";
Expand Down

0 comments on commit 45646fa

Please sign in to comment.