From 8481c9a9fbff52de08fcbd941360ab20febab159 Mon Sep 17 00:00:00 2001 From: Eli Bosley Date: Wed, 29 Jan 2025 13:46:52 -0500 Subject: [PATCH] fix: length --- .../unraid-file-modifier/unraid-file-modifier.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/unraid-api/unraid-file-modifier/unraid-file-modifier.spec.ts b/api/src/unraid-api/unraid-file-modifier/unraid-file-modifier.spec.ts index 0f3defd9c..f04df7d5b 100644 --- a/api/src/unraid-api/unraid-file-modifier/unraid-file-modifier.spec.ts +++ b/api/src/unraid-api/unraid-file-modifier/unraid-file-modifier.spec.ts @@ -67,7 +67,7 @@ describe('FileModificationService', () => { it('should load modifications', async () => { const mods = await service.loadModifications(); - expect(mods).toBeGreaterThan(0); + expect(mods.length).toBeGreaterThan(0); }); it('should apply modifications', async () => {