diff --git a/Testing/GBObjectiveCParser-MethodsParsingTesting.m b/Testing/GBObjectiveCParser-MethodsParsingTesting.m index 307f4a4e..1a8f0d17 100644 --- a/Testing/GBObjectiveCParser-MethodsParsingTesting.m +++ b/Testing/GBObjectiveCParser-MethodsParsingTesting.m @@ -283,12 +283,12 @@ - (void)testParseObjectsFromString_shouldRegisterComplexPropertyDefinition2 { GBObjectiveCParser *parser = [GBObjectiveCParser parserWithSettingsProvider:[GBTestObjectsRegistry mockSettingsProvider]]; GBStore *store = [[GBStore alloc] init]; // execute - [parser parseObjectsFromString:@"@interface MyClass @property (weak) IBOutlet id delegate; @end" sourceFile:@"filename.h" toStore:store]; + [parser parseObjectsFromString:@"@interface MyClass @property (weak) IBOutlet id delegate; @end" sourceFile:@"filename.h" toStore:store]; // verify GBClassData *class = [[store classes] anyObject]; NSArray *methods = [[class methods] methods]; assertThatInteger([methods count], equalToInteger(1)); - [self assertMethod:[methods objectAtIndex:0] matchesPropertyComponents:@"weak", @"IBOutlet", @"id", @"delegate", nil]; + [self assertMethod:[methods objectAtIndex:0] matchesPropertyComponents:@"weak", @"IBOutlet", @"id", @"<", @"Protocol", @">", @"delegate", nil]; } - (void)testParseObjectsFromString_shouldRegisterBlockPropertyDefinition {