summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuller, Alexander (A.) <amulle19@ford.com>2016-07-29 11:37:37 -0700
committerMuller, Alexander (A.) <amulle19@ford.com>2016-07-29 11:37:37 -0700
commite17cda81318d1bf6516fac4ab73b27b0d38e0cbc (patch)
tree99c6fe5a7dbdc951ed806f7d4ae2fe6976668695
parent8d4b1b85328ea46a418389d7b67620c72ab60905 (diff)
downloadsdl_ios-e17cda81318d1bf6516fac4ab73b27b0d38e0cbc.tar.gz
Fixed spec issues relating to changed protocol property name.
-rw-r--r--SmartDeviceLinkTests/UtilitiesSpecs/Touches/SDLTouchManagerSpec.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLinkTests/UtilitiesSpecs/Touches/SDLTouchManagerSpec.m b/SmartDeviceLinkTests/UtilitiesSpecs/Touches/SDLTouchManagerSpec.m
index c9ab866b8..2a3740e4c 100644
--- a/SmartDeviceLinkTests/UtilitiesSpecs/Touches/SDLTouchManagerSpec.m
+++ b/SmartDeviceLinkTests/UtilitiesSpecs/Touches/SDLTouchManagerSpec.m
@@ -27,7 +27,7 @@ describe(@"SDLTouchManager Tests", ^{
context(@"initializing", ^{
it(@"should correctly have default properties", ^{
SDLTouchManager* touchManager = [[SDLTouchManager alloc] init];
- expect(touchManager.touchEventListener).to(beNil());
+ expect(touchManager.touchEventDelegate).to(beNil());
expect(@(touchManager.tapDistanceThreshold)).to(equal(@50));
expect(@(touchManager.tapTimeThreshold)).to(beCloseTo(@0.4).within(0.0001));
expect(@(touchManager.movementTimeThreshold)).to(beCloseTo(@0.5).within(0.0001));
@@ -67,7 +67,7 @@ describe(@"SDLTouchManager Tests", ^{
beforeEach(^{
touchManager = [[SDLTouchManager alloc] init];
delegateMock = OCMProtocolMock(@protocol(SDLTouchManagerDelegate));
- touchManager.touchEventListener = delegateMock;
+ touchManager.touchEventDelegate = delegateMock;
controlPoint = CGPointMake(100, 200);
didCallSingleTap = NO;