Skip to content

Commit 79ce97f

Browse files
committed
Increasing delay in test that sometimes fail
1 parent b53a0ec commit 79ce97f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/RedisCacheAdapter.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ describe_only(() => {
7878
.put(KEY, VALUE, ttl)
7979
.then(() => cache.get(KEY))
8080
.then(value => expect(value).toEqual(VALUE))
81-
.then(wait.bind(null, 2))
81+
.then(wait.bind(null, 4))
8282
.then(() => cache.get(KEY))
8383
.then(value => expect(value).toEqual(null))
8484
);

0 commit comments

Comments
 (0)