Bug 1020581 - Notification resend test feedback improvement and less strict on timestamp. r=mhenretty

This commit is contained in:
Alexandre Lissy 2014-06-05 03:00:00 -04:00
parent 01b1811aea
commit 702810d5f0

View File

@ -155,7 +155,7 @@
ok(notif.dbId.match(uuidRegEx), "Notification dbId is valid: " + notif.dbId);
is(notif.dir, "ltr", "Notification dir is valid: " + notif.dir);
is(notif.tag, "fakeTag", "Notification tag is valid: " + notif.tag);
ok((notif.timestamp > now), "Notification timestamp is valid: " + notif.timestamp);
ok((notif.timestamp >= now), "Notification timestamp is valid: (" + notif.timestamp + " >= " + now + ")");
notif2.close();
});
}