Skip to content

Commit

Permalink
Merge pull request #433 from dmaclach/views
Browse files Browse the repository at this point in the history
Fix warning with `-Wmisleading-indentation`
  • Loading branch information
erikdoe authored Jun 4, 2020
2 parents 5b575fd + 901b8e8 commit bd3aa2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/OCMock/OCPartialMockObject.m
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ - (void)forwardInvocationForRealObject:(NSInvocation *)anInvocation
if(mock == nil)
[NSException raise:NSInternalInconsistencyException format:@"No partial mock for object %p", self];

if([mock handleInvocation:anInvocation] == NO)
if([mock handleInvocation:anInvocation] == NO)
{
[anInvocation setSelector:OCMAliasForOriginalSelector([anInvocation selector])];
[anInvocation invoke];
Expand Down

0 comments on commit bd3aa2e

Please sign in to comment.