Skip to content

Commit

Permalink
update test to reflect error in jaeger trace
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Tackett <[email protected]>
  • Loading branch information
Adam Tackett committed Feb 10, 2025
1 parent 94a99a4 commit 0fe0710
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ describe('overviewAndPieHelpers', () => {
const latencyInMilliseconds = durationMillis.toFixed(2);
expect(overview?.last_updated).toBe(expectedLastUpdated);
expect(overview?.latency).toBe(`${latencyInMilliseconds} ms`);
expect(overview?.error_count).toBe(0);
expect(overview?.error_count).toBe(1);
});

it('should return correct overview fields for data prepper mode', () => {
Expand Down

0 comments on commit 0fe0710

Please sign in to comment.