summaryrefslogtreecommitdiff
path: root/SmartDeviceLinkTests/RPCSpecs/RequestSpecs/SDLDeleteSubMenuSpec.m
diff options
context:
space:
mode:
authorMuller, Alexander (A.) <amulle19@ford.com>2016-09-19 19:39:39 -0700
committerMuller, Alexander (A.) <amulle19@ford.com>2016-09-19 19:39:39 -0700
commita18c482084a4f05ac61914bcdc88b8bbe4ea55c1 (patch)
treec0164f808461e1278fe76e11aef3efb3d0093618 /SmartDeviceLinkTests/RPCSpecs/RequestSpecs/SDLDeleteSubMenuSpec.m
parente6e84cc8c23609ab286c64a2c6a3037313f29908 (diff)
downloadsdl_ios-a18c482084a4f05ac61914bcdc88b8bbe4ea55c1.tar.gz
Updated to include generics for all collection objects.
Diffstat (limited to 'SmartDeviceLinkTests/RPCSpecs/RequestSpecs/SDLDeleteSubMenuSpec.m')
-rwxr-xr-xSmartDeviceLinkTests/RPCSpecs/RequestSpecs/SDLDeleteSubMenuSpec.m10
1 files changed, 5 insertions, 5 deletions
diff --git a/SmartDeviceLinkTests/RPCSpecs/RequestSpecs/SDLDeleteSubMenuSpec.m b/SmartDeviceLinkTests/RPCSpecs/RequestSpecs/SDLDeleteSubMenuSpec.m
index 9b2d6588d..35e955637 100755
--- a/SmartDeviceLinkTests/RPCSpecs/RequestSpecs/SDLDeleteSubMenuSpec.m
+++ b/SmartDeviceLinkTests/RPCSpecs/RequestSpecs/SDLDeleteSubMenuSpec.m
@@ -23,10 +23,10 @@ describe(@"Getter/Setter Tests", ^ {
});
it(@"Should get correctly when initialized", ^ {
- NSMutableDictionary* dict = [@{NAMES_request:
- @{NAMES_parameters:
- @{NAMES_menuID:@25614},
- NAMES_operation_name:NAMES_DeleteSubMenu}} mutableCopy];
+ NSMutableDictionary<NSString *, id> *dict = [@{NAMES_request:
+ @{NAMES_parameters:
+ @{NAMES_menuID:@25614},
+ NAMES_operation_name:NAMES_DeleteSubMenu}} mutableCopy];
SDLDeleteSubMenu* testRequest = [[SDLDeleteSubMenu alloc] initWithDictionary:dict];
expect(testRequest.menuID).to(equal(@25614));
@@ -39,4 +39,4 @@ describe(@"Getter/Setter Tests", ^ {
});
});
-QuickSpecEnd \ No newline at end of file
+QuickSpecEnd