Skip to content

Commit

Permalink
fix: correctly format value
Browse files Browse the repository at this point in the history
  • Loading branch information
Clemog committed Dec 24, 2024
1 parent 0eb7cb5 commit fcee37c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/commons.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ An error occured while testing the model:
}

function formatValue(value) {
return value === null ? 'null' : Math.fround(value).toLocaleString('en-us')
return value === null ? 'null' : Math.fround(value).toLocaleString('fr-FR')
}

function fmtCLIErr(
Expand Down

0 comments on commit fcee37c

Please sign in to comment.