summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlapinskijw <jlapinski.dev@gmail.com>2020-06-05 09:46:29 -0400
committerlapinskijw <jlapinski.dev@gmail.com>2020-06-05 09:46:29 -0400
commita7f6c5dec65fd6e34a5bba0113304585c58dd3fe (patch)
tree16bb39266bc6a0bbde910ff5c7ad6884d9316827
parentd254b5731efea6ae9e027f7f931910d393d63b86 (diff)
downloadsdl_ios-a7f6c5dec65fd6e34a5bba0113304585c58dd3fe.tar.gz
fixed a few it declarations
-rw-r--r--SmartDeviceLinkTests/DevAPISpecs/SDLPermissionsManagerSpec.m8
1 files changed, 4 insertions, 4 deletions
diff --git a/SmartDeviceLinkTests/DevAPISpecs/SDLPermissionsManagerSpec.m b/SmartDeviceLinkTests/DevAPISpecs/SDLPermissionsManagerSpec.m
index 94187bdd6..8a74894e7 100644
--- a/SmartDeviceLinkTests/DevAPISpecs/SDLPermissionsManagerSpec.m
+++ b/SmartDeviceLinkTests/DevAPISpecs/SDLPermissionsManagerSpec.m
@@ -294,7 +294,7 @@ describe(@"SDLPermissionsManager", ^{
#pragma clang diagnostic pop
});
- it(@"should return mixed", ^{
+ it(@"should return allowed", ^{
expect(@(testResultStatus)).to(equal(@(SDLPermissionGroupStatusAllowed)));
});
});
@@ -307,7 +307,7 @@ describe(@"SDLPermissionsManager", ^{
testResultStatus = [testPermissionsManager groupStatusOfRPCNames:@[testRPCNameAllAllowed, testRPCNameFullLimitedAllowed]];
});
- it(@"should return mixed", ^{
+ it(@"should return allowed", ^{
expect(@(testResultStatus)).to(equal(@(SDLPermissionGroupStatusAllowed)));
});
});
@@ -324,7 +324,7 @@ describe(@"SDLPermissionsManager", ^{
#pragma clang diagnostic pop
});
- it(@"should return mixed", ^{
+ it(@"should return disallowed", ^{
expect(@(testResultStatus)).to(equal(@(SDLPermissionGroupStatusDisallowed)));
});
});
@@ -337,7 +337,7 @@ describe(@"SDLPermissionsManager", ^{
testResultStatus = [testPermissionsManager groupStatusOfRPCNames:@[testRPCNameFullLimitedAllowed, testRPCNameAllDisallowed]];
});
- it(@"should return mixed", ^{
+ it(@"should return disallowed", ^{
expect(@(testResultStatus)).to(equal(@(SDLPermissionGroupStatusDisallowed)));
});
});