Skip to content

Commit f444ee8

Browse files
committed
test: fix failing tests
1 parent 0940623 commit f444ee8

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

packages/bentocache/tests/bento_cache_options.spec.ts

-3
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,13 @@ test.group('Bento Cache Options', () => {
99

1010
assert.deepEqual(options.ttl, string.milliseconds.parse('30m'))
1111
assert.deepEqual(options.prefix, 'bentocache')
12-
assert.deepEqual(options.suppressL2Errors, true)
1312
})
1413

1514
test('override defaults', ({ assert }) => {
1615
const options = new BentoCacheOptions({ ttl: '10m', prefix: 'foo' })
1716

1817
assert.deepEqual(options.ttl, '10m')
1918
assert.deepEqual(options.prefix, 'foo')
20-
assert.deepEqual(options.suppressL2Errors, true)
2119
})
2220

2321
test('override with cloneWith', ({ assert }) => {
@@ -26,6 +24,5 @@ test.group('Bento Cache Options', () => {
2624
assert.deepEqual(options.ttl, '20m')
2725
assert.deepEqual(options.prefix, 'foo')
2826
assert.deepEqual(options.grace, false)
29-
assert.deepEqual(options.suppressL2Errors, true)
3027
})
3128
})

0 commit comments

Comments
 (0)