diff options
Diffstat (limited to 'server/sonar-web/src/main/js/helpers/testMocks.ts')
-rw-r--r-- | server/sonar-web/src/main/js/helpers/testMocks.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/helpers/testMocks.ts b/server/sonar-web/src/main/js/helpers/testMocks.ts index eab7d9b809b..dc0809f4413 100644 --- a/server/sonar-web/src/main/js/helpers/testMocks.ts +++ b/server/sonar-web/src/main/js/helpers/testMocks.ts @@ -314,7 +314,7 @@ export function mockRawIssue(withLocations = false, overrides: Partial<RawIssue> }; } -export function mockIssue(withLocations = false, overrides: Partial<Issue> = {}) { +export function mockIssue(withLocations = false, overrides: Partial<Issue> = {}): Issue { const issue: Issue = { actions: [], component: 'main.js', |