Skip to content

Commit 1154190

Browse files
committed
test: fix test
1 parent 7cef005 commit 1154190

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/bentocache/tests/cache/cache_entry_options.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ test.group('Cache Entry Options', () => {
6565
const r1 = createCacheEntryOptions({ grace: false })
6666
const r2 = r1.cloneWith({ grace: '60m' })
6767

68-
assert.isFalse(r1.getIsGraceEnabled())
69-
assert.isTrue(r2.getIsGraceEnabled())
68+
assert.isFalse(r1.isGraceEnabled())
69+
assert.isTrue(r2.isGraceEnabled())
7070
})
7171

7272
test('timeout should be soft one if fallback value and grace period enabled', ({ assert }) => {

0 commit comments

Comments
 (0)