diff --git a/public/app/features/logs/components/logParser.test.ts b/public/app/features/logs/components/logParser.test.ts index 520f7eaf234..4219c3dc8cb 100644 --- a/public/app/features/logs/components/logParser.test.ts +++ b/public/app/features/logs/components/logParser.test.ts @@ -163,7 +163,7 @@ describe('logParser', () => { entryFieldIndex: 10, dataFrame: new MutableDataFrame({ refId: 'A', - fields: [{ ...testField }], + fields: [testTimeField, testLineField, { ...testField }], }), }); @@ -177,7 +177,7 @@ describe('logParser', () => { entryFieldIndex: 10, dataFrame: new MutableDataFrame({ refId: 'A', - fields: [{ ...testFieldWithNullValue }], + fields: [testTimeField, testLineField, { ...testFieldWithNullValue }], }), });