From 372fae0d34eb4359448cb9c1d6ceac51a82cfeb2 Mon Sep 17 00:00:00 2001 From: Ho Ngoc Hai Date: Fri, 10 Apr 2026 05:08:40 +0700 Subject: [PATCH] fix: remove unused CacheService import in cacheable decorator test Co-Authored-By: Paperclip --- .../shared/infrastructure/__tests__/cacheable.decorator.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/modules/shared/infrastructure/__tests__/cacheable.decorator.spec.ts b/apps/api/src/modules/shared/infrastructure/__tests__/cacheable.decorator.spec.ts index f4c5480..bb1178f 100644 --- a/apps/api/src/modules/shared/infrastructure/__tests__/cacheable.decorator.spec.ts +++ b/apps/api/src/modules/shared/infrastructure/__tests__/cacheable.decorator.spec.ts @@ -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', () => {