onepub-dev / fixed

A dart implementation of fixed precision numbers.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

tryParse with scale does not round the value.

oakstair opened this issue · comments

This test is failing.

Fixed gives '3.1415' which is wrong.

// Failing test
expect(Fixed.tryParse('3.1415926535897932', scale: 4).toString(), '3.1416');

Thanks for raising the issue. I will try to have a look over the weekend.

Can you confirm which version of fixed you are using?

Found and fixed in 2.3.2.

Thanks for the contributions.