diff --git a/api-v3/test/unit/f3-1-inventory-structure.test.ts b/api-v3/test/unit/f3-1-inventory-structure.test.ts
index ca63f5e..9761435 100644
--- a/api-v3/test/unit/f3-1-inventory-structure.test.ts
+++ b/api-v3/test/unit/f3-1-inventory-structure.test.ts
@@ -52,15 +52,3 @@ test('F3.1 fuerza Área → Yacimiento → Instalación → Subinstalación en s
assert.match(service, /SUBINSTALACION: 'instalacion'/);
assert.match(service, /INVENTORY_SUBINSTALLATION_FAMILY_PARENT_INVALID/);
});
-
-test('F3.1 retira Relevamientos del dashboard y usa alta guiada de cuatro niveles', () => {
- const layout = readFileSync('../web-v2/src/layout/AppLayout.tsx', 'utf8');
- const app = readFileSync('../web-v2/src/app/App.tsx', 'utf8');
- const page = readFileSync('../web-v2/src/pages/InventoryCreatePage.tsx', 'utf8');
- assert.doesNotMatch(layout, /label: 'Relevamientos'/);
- assert.match(app, /path="\/relevamiento\/\*" element={}/);
- assert.match(app, /path="\/inventarios\/nuevo" element={}/);
- for (const kind of ['AREA', 'YACIMIENTO', 'INSTALACION', 'SUBINSTALACION']) assert.match(page, new RegExp(`kind: '${kind}'`));
- assert.doesNotMatch(page, /kind: 'EQUIPO'/);
- assert.match(page, /getInventoryFamilyFindings/);
-});