Fix time zone value to be a float in GsweTimestamp test case

This commit is contained in:
Gergely Polonkai 2014-07-06 00:46:34 +02:00
parent 4b61c453fd
commit d2638adf8a
1 changed files with 1 additions and 1 deletions

View File

@ -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);