Bug 525394 - Fix race condition in test_autocomplete.js (old but not senior == senior citizen) [r=dolske]

This commit is contained in:
Matthew N 2010-05-06 09:20:33 +02:00
Родитель c00a04c907
Коммит 8a55b6db0a
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -205,7 +205,7 @@ function run_test() {
"'field3', " +
"'old but not senior', " +
"100, " +
(agedDate + 1000000) + ", " +
(agedDate + 60 * 1000 * 1000) + ", " +
now +
");");
fh.DBConnection.executeSimpleSQL(
@ -215,7 +215,7 @@ function run_test() {
"'field3', " +
"'senior citizen', " +
"100, " +
agedDate + ", " +
(agedDate - 60 * 1000 * 1000) + ", " +
now +
");");