Skip to content

Commit bd3aa2e

Browse files
authored
Merge pull request #433 from dmaclach/views
Fix warning with `-Wmisleading-indentation`
2 parents 5b575fd + 901b8e8 commit bd3aa2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/OCMock/OCPartialMockObject.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ - (void)forwardInvocationForRealObject:(NSInvocation *)anInvocation
239239
if(mock == nil)
240240
[NSException raise:NSInternalInconsistencyException format:@"No partial mock for object %p", self];
241241

242-
if([mock handleInvocation:anInvocation] == NO)
242+
if([mock handleInvocation:anInvocation] == NO)
243243
{
244244
[anInvocation setSelector:OCMAliasForOriginalSelector([anInvocation selector])];
245245
[anInvocation invoke];

0 commit comments

Comments
 (0)