Skip to content

Commit

Permalink
fix jest test
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaliidm committed Apr 8, 2024
1 parent 2f65849 commit d6200ff
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ describe('getSuppressionTerms', () => {
},
fields: { 'host.name': ['localhost-1'], 'agent.name': 'test', 'host.ip': '127.0.0.1' },
})
).toEqual([{ field: 'host.name', value: ['localhost-1'] }, { 'host.ip': '127.0.0.1' }]);
).toEqual([
{ field: 'host.name', value: ['localhost-1'] },
{ field: 'host.ip', value: '127.0.0.1' },
]);
});
});

0 comments on commit d6200ff

Please sign in to comment.