From a87d64e9223e157400c8e90c025cac5f26c446d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20Spie=C3=9F?= Date: Wed, 9 Sep 2015 16:28:26 +0200 Subject: [PATCH] Fix test issue with pointer conversion on armv7 --- Support/HockeySDKTests/BITAuthenticatorTests.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Support/HockeySDKTests/BITAuthenticatorTests.m b/Support/HockeySDKTests/BITAuthenticatorTests.m index 24db000c49..fd82d32eb0 100644 --- a/Support/HockeySDKTests/BITAuthenticatorTests.m +++ b/Support/HockeySDKTests/BITAuthenticatorTests.m @@ -277,7 +277,7 @@ static void *kInstallationIdentification = &kInstallationIdentification; [_sut storeInstallationIdentifier:@"asd" withType:BITAuthenticatorIdentificationTypeHockeyAppEmail]; - OCMExpect([mockAuthenticator validateWithCompletion:(id)anything() sessionSupported:(id)anything()]); + OCMExpect([mockAuthenticator validateWithCompletion:(id)anything() sessionSupported:YES]); [_sut authenticate]; OCMVerifyAll(mockAuthenticator); }