Skip to content

Commit

Permalink
Fix failing test case.
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonWeber committed Dec 8, 2022
1 parent 9ee851c commit 5951440
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ describe('PrometheusSerializer', () => {
it('should serialize non-finite values', async () => {
const serializer = new PrometheusSerializer();
const cases = [
[NaN, 'Nan'],
[NaN, 'NaN'],
[-Infinity, '-Inf'],
[+Infinity, '+Inf'],
] as [number, string][];
Expand Down

0 comments on commit 5951440

Please sign in to comment.