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),