fix: last failing test

This commit is contained in:
Jared Ramirez 2021-06-01 17:12:47 -07:00
parent a046bbe32a
commit 13bb94ac24

View file

@ -383,7 +383,7 @@ test "fromString: -.45" {
}
test "fromString: -0.45" {
var roc_str = RocStr.init("-0.45", 4);
var roc_str = RocStr.init("-0.45", 5);
var dec = RocDec.fromString(roc_str);
expectEqual(RocDec{ .num = -450000000000000000 }, dec.?);