From 26575211eb00dd8652630b93170ec45bef4c480b Mon Sep 17 00:00:00 2001 From: Yang Gu Date: Mon, 13 Dec 2010 11:03:23 +0800 Subject: [PATCH] test-stkutil: Modify the check logic of time zone --- unit/test-stkutil.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/unit/test-stkutil.c b/unit/test-stkutil.c index 868d54bb..185dfdde 100644 --- a/unit/test-stkutil.c +++ b/unit/test-stkutil.c @@ -245,7 +245,11 @@ static void check_gsm_sms(const struct sms *command, g_assert(ca->hour == ta->hour); g_assert(ca->minute == ta->minute); g_assert(ca->second == ta->second); - g_assert(ca->timezone == ta->timezone); + g_assert(ca->has_timezone == ta->has_timezone); + + if (ta->has_timezone) + g_assert(ca->timezone == ta->timezone); + break; } case SMS_VALIDITY_PERIOD_FORMAT_ENHANCED: