fix: remove unused CacheService import in cacheable decorator test

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Ho Ngoc Hai
2026-04-10 05:08:40 +07:00
parent 2611cfa867
commit 372fae0d34

View File

@@ -1,5 +1,5 @@
import { describe, it, expect, vi, beforeEach } from 'vitest';
import { CachePrefix, CacheService, CacheTTL } from '../cache.service';
import { CachePrefix, CacheTTL } from '../cache.service';
import { Cacheable } from '../decorators/cacheable.decorator';
describe('Cacheable decorator', () => {