Bug 760199: fix test failure due to SMSC timestamp truncation, r=philikon

This commit is contained in:
Vicamo Yang 2012-08-17 10:01:40 +08:00
Родитель c64c9eb535
Коммит 47f2f8109d
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -30,7 +30,8 @@ sms.onreceived = function onreceived(event) {
is(message.receiver, null);
is(message.body, body);
ok(message.timestamp instanceof Date);
ok(message.timestamp.getTime() > now);
// SMSC timestamp is in seconds.
ok(Math.floor(message.timestamp.getTime() / 1000) >= Math.floor(now / 1000));
cleanUp();
};