Skip to content

Commit 542ea59

Browse files
committed
see 06/15 log
1 parent 3ab7729 commit 542ea59

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: utilcode/src/test/java/com/blankj/utilcode/util/CacheMemoryUtilsTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@ public void getExpired() throws Exception {
4848
mCacheMemoryUtils1.put("10", 10, 2 * CacheMemoryUtils.SEC);
4949

5050
assertEquals(10, mCacheMemoryUtils1.get("10"));
51-
Thread.sleep(1000);
51+
Thread.sleep(1500);
5252
assertEquals(10, mCacheMemoryUtils1.get("10"));
53-
Thread.sleep(1000);
53+
Thread.sleep(1500);
5454
assertNull(mCacheMemoryUtils1.get("10"));
5555
}
5656

0 commit comments

Comments
 (0)