summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2020-04-29 15:30:35 -0400
committerJoel Fischer <joeljfischer@gmail.com>2020-04-29 15:30:35 -0400
commit62002dba1c845a9e9f4817639b6c4fbdfce2fa23 (patch)
treebf70e53a6aed0ee6a91862d88a02ae662233177a
parentcc931f0cce5e7946ee0f36de6b1cb69c37478b21 (diff)
downloadsdl_ios-62002dba1c845a9e9f4817639b6c4fbdfce2fa23.tar.gz
Attempt to fix Cache manager spec
-rw-r--r--SmartDeviceLinkTests/SDLCacheFileManagerSpec.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLinkTests/SDLCacheFileManagerSpec.m b/SmartDeviceLinkTests/SDLCacheFileManagerSpec.m
index 05832a953..e320a76ad 100644
--- a/SmartDeviceLinkTests/SDLCacheFileManagerSpec.m
+++ b/SmartDeviceLinkTests/SDLCacheFileManagerSpec.m
@@ -147,8 +147,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());
});
});