summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2020-05-20 16:05:34 -0400
committerJoel Fischer <joeljfischer@gmail.com>2020-05-20 16:05:34 -0400
commit980403c72928821c5460ee7df14d15446366a240 (patch)
treec22d19fa154cd75be6871f5f04078e20e37d2360
parent5bcffaaec203b53f1e455e235c52502ec874e3a6 (diff)
downloadsdl_ios-980403c72928821c5460ee7df14d15446366a240.tar.gz
Fix text & graphic tests
-rw-r--r--SmartDeviceLinkTests/DevAPISpecs/SDLTextAndGraphicManagerSpec.m14
1 files changed, 7 insertions, 7 deletions
diff --git a/SmartDeviceLinkTests/DevAPISpecs/SDLTextAndGraphicManagerSpec.m b/SmartDeviceLinkTests/DevAPISpecs/SDLTextAndGraphicManagerSpec.m
index fb7298988..3e00ffe37 100644
--- a/SmartDeviceLinkTests/DevAPISpecs/SDLTextAndGraphicManagerSpec.m
+++ b/SmartDeviceLinkTests/DevAPISpecs/SDLTextAndGraphicManagerSpec.m
@@ -375,7 +375,7 @@ describe(@"text and graphic manager", ^{
testManager.windowCapability = [[SDLWindowCapability alloc] init];
});
- it(@"should send everything", ^{
+ fit(@"should send nothing", ^{
testManager.mediaTrackTextField = textMediaTrack;
testManager.title = textTitle;
testManager.textField1 = textLine1;
@@ -386,12 +386,12 @@ describe(@"text and graphic manager", ^{
testManager.batchUpdates = NO;
[testManager updateWithCompletionHandler:nil];
- expect(testManager.inProgressUpdate.mediaTrack).to(equal(textMediaTrack));
- expect(testManager.inProgressUpdate.templateTitle).to(equal(textTitle));
- expect(testManager.inProgressUpdate.mainField1).to(equal(textLine1));
- expect(testManager.inProgressUpdate.mainField2).to(equal(textLine2));
- expect(testManager.inProgressUpdate.mainField3).to(equal(textLine3));
- expect(testManager.inProgressUpdate.mainField4).to(equal(textLine4));
+ expect(testManager.inProgressUpdate.mediaTrack).toNot(equal(textMediaTrack));
+ expect(testManager.inProgressUpdate.templateTitle).toNot(equal(textTitle));
+ expect(testManager.inProgressUpdate.mainField1).toNot(equal(textLine1));
+ expect(testManager.inProgressUpdate.mainField2).toNot(equal(textLine2));
+ expect(testManager.inProgressUpdate.mainField3).toNot(equal(textLine3));
+ expect(testManager.inProgressUpdate.mainField4).toNot(equal(textLine4));
});
});