From 1bb26305637e3aa8a81688fb69f6db5bc1cde6c8 Mon Sep 17 00:00:00 2001 From: Salih Candir Date: Wed, 21 Dec 2022 11:37:08 +0100 Subject: [PATCH] fix: use right url path Signed-off-by: Salih Candir Signed-off-by: Salih Candir --- plugins/lighthouse/src/components/AuditView/index.test.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/lighthouse/src/components/AuditView/index.test.tsx b/plugins/lighthouse/src/components/AuditView/index.test.tsx index d19543d679..d58c0d1ce4 100644 --- a/plugins/lighthouse/src/components/AuditView/index.test.tsx +++ b/plugins/lighthouse/src/components/AuditView/index.test.tsx @@ -168,7 +168,7 @@ describe('AuditView', () => { expect( rendered.getByText(formatTime(a.timeCreated)).parentElement ?.parentElement, - ).toHaveAttribute('href', `${basePath}/audits/${a.id}`); + ).toHaveAttribute('href', `${basePath}/audit/${a.id}`); }); }); });