From 6cf3f78ffb741aaa33b440d3a8115802fe317963 Mon Sep 17 00:00:00 2001 From: Johan Haals Date: Mon, 20 Sep 2021 09:29:59 +0200 Subject: [PATCH] fix imports Signed-off-by: Johan Haals --- plugins/catalog-backend/src/next/NextRouter.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/catalog-backend/src/next/NextRouter.test.ts b/plugins/catalog-backend/src/next/NextRouter.test.ts index 4f772be710..15c8716004 100644 --- a/plugins/catalog-backend/src/next/NextRouter.test.ts +++ b/plugins/catalog-backend/src/next/NextRouter.test.ts @@ -21,8 +21,9 @@ import type { Entity, LocationSpec, Location } from '@backstage/catalog-model'; import express from 'express'; import request from 'supertest'; import { EntitiesCatalog } from '../catalog'; -import { createNextRouter, LocationService, RefreshService } from '../next'; +import { LocationService, RefreshService } from './types'; import { basicEntityFilter } from '../service/request'; +import { createNextRouter } from './NextRouter'; describe('createNextRouter readonly disabled', () => { let entitiesCatalog: jest.Mocked;