summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2018-05-17 14:40:31 -0400
committerJoel Fischer <joeljfischer@gmail.com>2018-05-17 14:40:31 -0400
commit16667c41bb3a8fde90b32aa454924237ff9c656b (patch)
tree895793e69d27d681fc30c6e734c368c4870900ef
parenta8e1417cc799425ed0ab49a0e2b89783786de1cf (diff)
downloadsdl_ios-16667c41bb3a8fde90b32aa454924237ff9c656b.tar.gz
Fix tests
-rw-r--r--SmartDeviceLinkTests/RPCSpecs/RequestSpecs/SDLShowSpec.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/SmartDeviceLinkTests/RPCSpecs/RequestSpecs/SDLShowSpec.m b/SmartDeviceLinkTests/RPCSpecs/RequestSpecs/SDLShowSpec.m
index 88fca3c17..430718d75 100644
--- a/SmartDeviceLinkTests/RPCSpecs/RequestSpecs/SDLShowSpec.m
+++ b/SmartDeviceLinkTests/RPCSpecs/RequestSpecs/SDLShowSpec.m
@@ -77,7 +77,7 @@ describe(@"Getter/Setter Tests", ^ {
expect(testRequest.metadataTags).to(beNil());
});
- fdescribe(@"initializing", ^{
+ describe(@"initializing", ^{
__block NSString *testString1 = @"Test 1";
__block NSString *testString2 = @"Test 2";
__block SDLMetadataType testType1 = SDLMetadataTypeHumidity;
@@ -130,8 +130,8 @@ describe(@"Getter/Setter Tests", ^ {
expect(testShow.secondaryGraphic).to(beNil());
expect(testShow.softButtons).to(beNil());
expect(testShow.customPresets).to(beNil());
- expect(testShow.metadataTags.mainField1).to(equal(testType1));
- expect(testShow.metadataTags.mainField2).to(equal(testType2));
+ expect(testShow.metadataTags.mainField1).to(contain(testType1));
+ expect(testShow.metadataTags.mainField2).to(contain(testType2));
expect(testShow.metadataTags.mainField3).to(beNil());
expect(testShow.metadataTags.mainField4).to(beNil());