summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2019-10-03 11:27:37 -0400
committerJoel Fischer <joeljfischer@gmail.com>2019-10-03 11:27:37 -0400
commit0de3b8bfc6692608c5b20a89fe50bca5d91193dd (patch)
tree27fef36e945b2c06460fae02ff72c1f61e160534
parentad0b50b6983e9b7c0c32c56ea15003c91ba86479 (diff)
downloadsdl_ios-bugfix/issue-1406-failing-travis-tests.tar.gz
-rw-r--r--SmartDeviceLinkTests/DevAPISpecs/SDLPresentKeyboardOperationSpec.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLinkTests/DevAPISpecs/SDLPresentKeyboardOperationSpec.m b/SmartDeviceLinkTests/DevAPISpecs/SDLPresentKeyboardOperationSpec.m
index cf0c17488..08424949d 100644
--- a/SmartDeviceLinkTests/DevAPISpecs/SDLPresentKeyboardOperationSpec.m
+++ b/SmartDeviceLinkTests/DevAPISpecs/SDLPresentKeyboardOperationSpec.m
@@ -419,7 +419,7 @@ describe(@"present keyboard operation", ^{
it(@"should not attempt to send a cancel interaction", ^{
expect(testOp.isExecuting).to(beFalse());
expect(testOp.isFinished).to(beFalse());
- expect(testOp.isCancelled).to(beFalse());
+ expect(testOp.isCancelled).to(beTrue());
SDLCancelInteraction *lastRequest = testConnectionManager.receivedRequests.lastObject;
expect(lastRequest).to(beNil());