From dca8354af94e9feb46ea2312857e000aaa232372 Mon Sep 17 00:00:00 2001 From: philippe-perrin-sonarsource Date: Thu, 27 Jan 2022 11:06:59 +0100 Subject: SONAR-15945 Get rid of T namespace in sonar-web --- .../js/components/SourceViewer/__tests__/SourceViewerHeader-test.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'server/sonar-web/src/main/js/components/SourceViewer/__tests__') diff --git a/server/sonar-web/src/main/js/components/SourceViewer/__tests__/SourceViewerHeader-test.tsx b/server/sonar-web/src/main/js/components/SourceViewer/__tests__/SourceViewerHeader-test.tsx index 2daf53f6013..1a879dcb4c8 100644 --- a/server/sonar-web/src/main/js/components/SourceViewer/__tests__/SourceViewerHeader-test.tsx +++ b/server/sonar-web/src/main/js/components/SourceViewer/__tests__/SourceViewerHeader-test.tsx @@ -22,6 +22,7 @@ import * as React from 'react'; import { mockMainBranch } from '../../../helpers/mocks/branch-like'; import { mockSourceViewerFile } from '../../../helpers/testMocks'; import { MetricKey } from '../../../types/metrics'; +import { Measure } from '../../../types/types'; import SourceViewerHeader from '../SourceViewerHeader'; it('should render correctly for a regular file', () => { @@ -38,7 +39,7 @@ it('should render correctly for a unit test', () => { }); it('should render correctly if issue details are passed', () => { - const componentMeasures: T.Measure[] = [ + const componentMeasures: Measure[] = [ { metric: MetricKey.code_smells, value: '1' }, { metric: MetricKey.file_complexity_distribution, value: '42' }, // unused, should be ignored { metric: MetricKey.security_hotspots, value: '2' }, -- cgit v1.2.3