зеркало из https://github.com/mozilla/gecko-dev.git
Bug 760199: fix test failure due to SMSC timestamp truncation, r=philikon
This commit is contained in:
Родитель
c64c9eb535
Коммит
47f2f8109d
|
@ -30,7 +30,8 @@ sms.onreceived = function onreceived(event) {
|
||||||
is(message.receiver, null);
|
is(message.receiver, null);
|
||||||
is(message.body, body);
|
is(message.body, body);
|
||||||
ok(message.timestamp instanceof Date);
|
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();
|
cleanUp();
|
||||||
};
|
};
|
||||||
|
|
Загрузка…
Ссылка в новой задаче