summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2020-09-02 08:56:42 -0400
committerJoel Fischer <joeljfischer@gmail.com>2020-09-02 08:56:42 -0400
commit13c4c1dc44dec2a9ab3edb37c0ead2d212cf9ca7 (patch)
tree9934c429553a021bf7a2773794e4ec5c47b68e93
parentebabd562bb38c70e0d4145686dc0f9d304b883f3 (diff)
downloadsdl_ios-bugfix/issue-1762-failing-automated-tests.tar.gz
Make failing cache spec use toEventuallybugfix/issue-1762-failing-automated-tests
-rw-r--r--SmartDeviceLinkTests/SDLCacheFileManagerSpec.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLinkTests/SDLCacheFileManagerSpec.m b/SmartDeviceLinkTests/SDLCacheFileManagerSpec.m
index e320a76ad..836a0391f 100644
--- a/SmartDeviceLinkTests/SDLCacheFileManagerSpec.m
+++ b/SmartDeviceLinkTests/SDLCacheFileManagerSpec.m
@@ -165,8 +165,8 @@ describe(@"a cache file manager", ^{
});
it(@"it should return downloaded image and no error", ^{
- expect(resultImage).to(equal(testImage));
- expect(resultError).to(beNil());
+ expect(resultImage).toEventually(equal(testImage));
+ expect(resultError).toEventually(beNil());
});
});