summaryrefslogtreecommitdiff
path: root/SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLChoiceSpec.m
diff options
context:
space:
mode:
Diffstat (limited to 'SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLChoiceSpec.m')
-rw-r--r--SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLChoiceSpec.m14
1 files changed, 7 insertions, 7 deletions
diff --git a/SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLChoiceSpec.m b/SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLChoiceSpec.m
index 46cb27b6e..3fa486a98 100644
--- a/SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLChoiceSpec.m
+++ b/SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLChoiceSpec.m
@@ -40,13 +40,13 @@ describe(@"Getter/Setter Tests", ^ {
});
it(@"Should get correctly when initialized", ^ {
- NSMutableDictionary<NSString *, id> *dict = [@{NAMES_choiceID:@3,
- NAMES_menuName:@"Hello",
- NAMES_vrCommands:[@[@"1", @"2"] mutableCopy],
- NAMES_image:image,
- NAMES_secondaryText:@"Arbitrary",
- NAMES_tertiaryText:@"qwerty",
- NAMES_secondaryImage:secondaryImage} mutableCopy];
+ NSMutableDictionary<NSString *, id> *dict = [@{SDLNameChoiceId:@3,
+ SDLNameMenuName:@"Hello",
+ SDLNameVRCommands:[@[@"1", @"2"] mutableCopy],
+ SDLNameImage:image,
+ SDLNameSecondaryText:@"Arbitrary",
+ SDLNameTertiaryText:@"qwerty",
+ SDLNameSecondaryImage:secondaryImage} mutableCopy];
SDLChoice* testStruct = [[SDLChoice alloc] initWithDictionary:dict];
expect(testStruct.choiceID).to(equal(@3));