summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorleonid lokhmatov, Luxoft <zaqqqqqqqq@gmail.com>2021-02-11 11:01:01 +0200
committerleonid lokhmatov, Luxoft <zaqqqqqqqq@gmail.com>2021-02-11 11:01:01 +0200
commit176ec12c02b8ab9c1aa3bffa7a60819eac876c6b (patch)
tree28bb950e194493c020c9161c1c779485b38448b9
parent145951fd9b401a3a1e4a40787631fc02987191ca (diff)
downloadsdl_ios-176ec12c02b8ab9c1aa3bffa7a60819eac876c6b.tar.gz
[0296] 'upd video stream cap': fix broken unit tests
-rw-r--r--SmartDeviceLinkTests/RPCSpecs/RequestSpecs/SDLRegisterAppInterfaceSpec.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/SmartDeviceLinkTests/RPCSpecs/RequestSpecs/SDLRegisterAppInterfaceSpec.m b/SmartDeviceLinkTests/RPCSpecs/RequestSpecs/SDLRegisterAppInterfaceSpec.m
index f939851d1..71a51d7fb 100644
--- a/SmartDeviceLinkTests/RPCSpecs/RequestSpecs/SDLRegisterAppInterfaceSpec.m
+++ b/SmartDeviceLinkTests/RPCSpecs/RequestSpecs/SDLRegisterAppInterfaceSpec.m
@@ -170,7 +170,7 @@ describe(@"RegisterAppInterface Tests", ^{
expect(testRegisterAppInterface.fullAppID).to(match(fullAppId));
expect(testRegisterAppInterface.appID).to(match(expectedAppId));
- expect(testRegisterAppInterface.sdlMsgVersion).to(equal(currentSDLMsgVersion));
+ expect(testRegisterAppInterface.sdlMsgVersion).to(beNil());
expect(testRegisterAppInterface.appName).to(equal(appName));
expect(testRegisterAppInterface.ttsName).to(contain(chunk));
expect(testRegisterAppInterface.ngnMediaScreenAppName).to(equal(shortAppName));
@@ -194,7 +194,7 @@ describe(@"RegisterAppInterface Tests", ^{
expect(testRegisterAppInterface.fullAppID).to(beNil());
expect(testRegisterAppInterface.appID).to(match(appId));
- expect(testRegisterAppInterface.sdlMsgVersion).to(equal(currentSDLMsgVersion));
+ expect(testRegisterAppInterface.sdlMsgVersion).to(beNil());
expect(testRegisterAppInterface.appName).to(equal(appName));
expect(testRegisterAppInterface.ttsName).to(beNil());
expect(testRegisterAppInterface.ngnMediaScreenAppName).to(beNil());
@@ -215,7 +215,7 @@ describe(@"RegisterAppInterface Tests", ^{
expect(testRegisterAppInterface.fullAppID).to(match(fullAppId));
expect(testRegisterAppInterface.appID).to(match(appId));
- expect(testRegisterAppInterface.sdlMsgVersion).to(equal(currentSDLMsgVersion));
+ expect(testRegisterAppInterface.sdlMsgVersion).to(beNil());
expect(testRegisterAppInterface.appName).to(equal(appName));
expect(testRegisterAppInterface.ttsName).to(contain(chunk));
expect(testRegisterAppInterface.ngnMediaScreenAppName).to(equal(shortAppName));