aboutsummaryrefslogtreecommitdiff
path: root/tests/tools_test.ml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tools_test.ml')
-rwxr-xr-xtests/tools_test.ml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/tools_test.ml b/tests/tools_test.ml
index 9afc611..b64afbc 100755
--- a/tests/tools_test.ml
+++ b/tests/tools_test.ml
@@ -68,7 +68,7 @@ module TestDate = struct
let test_get_julian_day ctx = begin
let result = Tools.Date.get_julian_day 2016 01 01
- and expected = (Num.num_of_int 2457389) in
+ and expected = (Num.num_of_int 42370) in
(* Check that the num is round *)
assert_equal true (Num.is_integer_num result);
@@ -88,7 +88,7 @@ module TestDate = struct
y2 m2 d2
in
- let result = Tools.Date.date_from_julian_day @@ Num.num_of_int 2415753
+ let result = Tools.Date.date_from_julian_day @@ Num.num_of_int 734
and expected = (1902, 01, 03) in
assert_equal
@@ -100,7 +100,7 @@ module TestDate = struct
let test_parse_time ctx = begin
let result = Tools.Date.from_string "1902-01-03T12:34:56"
- and expected = (Num.num_of_string "13045069031/5400") in
+ and expected = (Num.num_of_string "3966431/5400") in
(* =2415753.52425925925925925925 *)
assert_equal
~cmp:Num.(=/)