From ef620ca701eacc528cfef47a6bfd42dffdd16b55 Mon Sep 17 00:00:00 2001 From: kurilova Date: Wed, 12 Feb 2025 12:41:47 +0000 Subject: [PATCH] Fix mock --- modules/ui/src/app/mocks/testrun.mock.ts | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/modules/ui/src/app/mocks/testrun.mock.ts b/modules/ui/src/app/mocks/testrun.mock.ts index 8eecb1495..48321f2d5 100644 --- a/modules/ui/src/app/mocks/testrun.mock.ts +++ b/modules/ui/src/app/mocks/testrun.mock.ts @@ -43,11 +43,6 @@ export const TEST_DATA_RESULT: IResult[] = [ result: 'Not Started', required_result: RequiredResult.RequiredIfApplicable, }, - { - name: 'dns.mdns', - description: 'Does the device has MDNS (or any kind of IP multicast)', - result: 'Not Started', - }, ]; export const TEST_DATA_RESULT_WITH_RECOMMENDATIONS: IResult[] = [ @@ -86,25 +81,6 @@ export const TEST_DATA_RESULT_WITH_ERROR: IResult[] = [ }, ]; -export const TEST_DATA_RESULT_WITH_ERROR: IResult[] = [ - { - name: 'dns.network.hostname_resolution', - description: 'The device should resolve hostnames', - result: 'Compliant', - }, - { - name: 'dns.network.from_dhcp', - description: - 'The device should use the DNS server provided by the DHCP server', - result: 'Error', - }, - { - name: 'dns.mdns', - description: 'Does the device has MDNS (or any kind of IP multicast)', - result: 'Not Started', - }, -]; - export const TEST_DATA_TABLE_RESULT: IResult[] = [ ...TEST_DATA_RESULT, ...new Array(23).fill(null).map(() => ({}) as IResult),