Skip to content

Commit 7fc1040

Browse files
committed
fix tests
1 parent 1498015 commit 7fc1040

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ fn macro_run_err_test() {
323323
assert_ne!(y1, z);
324324

325325
// sin
326-
let s1 = "1.234567890123456789e+77";
326+
let s1 = "1.2345678901234e+77";
327327
let n = BigFloat::parse(
328328
s1,
329329
astro_float_num::Radix::Dec,
@@ -336,7 +336,7 @@ fn macro_run_err_test() {
336336
s1,
337337
astro_float_num::Radix::Dec,
338338
320,
339-
RoundingMode::None,
339+
RoundingMode::ToEven,
340340
&mut cc,
341341
);
342342
let mut y2 = n.sin(320, RoundingMode::None, &mut cc);

0 commit comments

Comments
 (0)