From d2638adf8a7f13ef72821f1c62af148bfd721842 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Sun, 6 Jul 2014 00:46:34 +0200 Subject: [PATCH] Fix time zone value to be a float in GsweTimestamp test case --- tests/gswe-timestamp-test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gswe-timestamp-test.c b/tests/gswe-timestamp-test.c index 74c35a0..2d79605 100644 --- a/tests/gswe-timestamp-test.c +++ b/tests/gswe-timestamp-test.c @@ -10,7 +10,7 @@ test_timestamp_jd(void) GsweTimestamp *timestamp; gdouble jd; - timestamp = gswe_timestamp_new_from_gregorian_full(1983, 3, 7, 11, 54, 45, 0, 1); + timestamp = gswe_timestamp_new_from_gregorian_full(1983, 3, 7, 11, 54, 45, 0, 1.0); g_assert(timestamp); jd = gswe_timestamp_get_julian_day_et(timestamp, NULL);