From eaae78a89c28d180d5eb555e5ab2e976c950aae2 Mon Sep 17 00:00:00 2001 From: David Snelling Date: Fri, 14 Nov 2025 12:56:29 -0800 Subject: [PATCH] test: update fake ID in test (00000000... is now VFS root) --- tests/unit/brainy-core.unit.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/unit/brainy-core.unit.test.ts b/tests/unit/brainy-core.unit.test.ts index 93754331..aab84f80 100644 --- a/tests/unit/brainy-core.unit.test.ts +++ b/tests/unit/brainy-core.unit.test.ts @@ -90,7 +90,8 @@ describe('Brainy 3.0 Core (Unit Tests)', () => { it('should handle non-existent IDs according to API contract', async () => { // Use valid UUID format (stricter validation in v5.1.0) - const fakeId = '00000000-0000-0000-0000-000000000000' + // v5.10.0: Can't use 00000000... anymore (it's the VFS root) + const fakeId = '11111111-1111-1111-1111-111111111111' expect(await brain.get(fakeId)).toBeNull()