summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorleonid lokhmatov, Luxoft <yurii.lokhmatov@dxc.com>2021-07-29 21:48:42 +0300
committerleonid lokhmatov, Luxoft <yurii.lokhmatov@dxc.com>2021-07-29 21:48:42 +0300
commit8c7e62da5e27e5fd5fae00a2d126a0964610ad30 (patch)
tree47813904bdf12ef72c1c3c62d50244171cf84232
parent06dd17c83af1aa58ca9c699bb2036493ef8c136e (diff)
downloadsdl_ios-8c7e62da5e27e5fd5fae00a2d126a0964610ad30.tar.gz
[0236] 'tire status': fix unit test comment for not nil case
-rw-r--r--SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLTireStatusSpec.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLTireStatusSpec.m b/SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLTireStatusSpec.m
index 440a618a1..81c96a865 100644
--- a/SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLTireStatusSpec.m
+++ b/SmartDeviceLinkTests/RPCSpecs/StructSpecs/SDLTireStatusSpec.m
@@ -79,7 +79,7 @@ describe(@"Getter/Setter Tests", ^{
expect(testStruct.innerRightRear).to(equal(tire6));
});
- context(@"Should return nil if not set", ^{
+ context(@"Should not return nil if not set", ^{
__block SDLTireStatus* testStruct = nil;
// default tire status (when it is set to nil)
__block SDLSingleTireStatus* tireDefault = nil;
@@ -101,7 +101,7 @@ describe(@"Getter/Setter Tests", ^{
#pragma clang diagnostic pop
});
- it(@"Should return nil if not set", ^{
+ it(@"Should not return nil if not set", ^{
expect(testStruct.pressureTelltale).to(equal(SDLWarningLightStatusNotUsed));
expect(testStruct.leftFront).to(equal(tireDefault));
expect(testStruct.rightFront).to(equal(tireDefault));