summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicoleYarroch <nicole@livio.io>2020-10-09 13:52:32 -0400
committerNicoleYarroch <nicole@livio.io>2020-10-09 13:52:32 -0400
commit931f327c38954bac0fa8454b5b970ae8248b3d66 (patch)
tree8bbc742c2728b9f702227ef2681512e0d3e96260
parent1d55066de86733e055b9567185a820a772d4d845 (diff)
downloadsdl_ios-bugfix/issue_1802_unit_test_crashes.tar.gz
Removed “expect”s from testsbugfix/issue_1802_unit_test_crashes
Signed-off-by: NicoleYarroch <nicole@livio.io>
-rw-r--r--SmartDeviceLinkTests/DevAPISpecs/SDLLifecycleManagerSpec.m4
1 files changed, 0 insertions, 4 deletions
diff --git a/SmartDeviceLinkTests/DevAPISpecs/SDLLifecycleManagerSpec.m b/SmartDeviceLinkTests/DevAPISpecs/SDLLifecycleManagerSpec.m
index 835080c34..32d2cfcbf 100644
--- a/SmartDeviceLinkTests/DevAPISpecs/SDLLifecycleManagerSpec.m
+++ b/SmartDeviceLinkTests/DevAPISpecs/SDLLifecycleManagerSpec.m
@@ -300,8 +300,6 @@ describe(@"a lifecycle manager", ^{
describe(@"in the connected state", ^{
beforeEach(^{
[testManager.lifecycleStateMachine setToState:SDLLifecycleStateConnected fromOldState:nil callEnterTransition:NO];
-
- expect(testManager.lifecycleState).to(equal(SDLLifecycleStateConnected));
});
describe(@"after receiving a register app interface response", ^{
@@ -404,8 +402,6 @@ describe(@"a lifecycle manager", ^{
describe(@"transitioning to the ready state", ^{
beforeEach(^{
[testManager.lifecycleStateMachine setToState:SDLLifecycleStateRegistered fromOldState:nil callEnterTransition:NO];
-
- expect(testManager.lifecycleState).to(equal(SDLLifecycleStateRegistered));
});
context(@"when the register response is a success", ^{