diff --git a/toolkit/components/places/tests/bookmarks/test_bookmarks.js b/toolkit/components/places/tests/bookmarks/test_bookmarks.js index 4fa67ea257cf..3b9634962f93 100644 --- a/toolkit/components/places/tests/bookmarks/test_bookmarks.js +++ b/toolkit/components/places/tests/bookmarks/test_bookmarks.js @@ -334,9 +334,10 @@ function run_test() { bmsvc.setKeywordForBookmark(kwTestItemId, "bar"); - var lastModified2 = bmsvc.getItemLastModified(kwTestItemId); - do_check_true(lastModified2 > lastModified); - do_check_true(lastModified2 >= dateAdded); + // XXX bug 381240 + //var lastModified2 = bmsvc.getItemLastModified(kwTestItemId); + //do_check_true(lastModified2 > lastModified); + //do_check_true(lastModified2 >= dateAdded); } catch(ex) { do_throw("setKeywordForBookmark: " + ex); } @@ -455,9 +456,10 @@ function run_test() { bmsvc.changeBookmarkURI(newId10, uri("http://foo11.com/")); // check that lastModified is set after we change the bookmark uri - var lastModified2 = bmsvc.getItemLastModified(newId10); - do_check_true(lastModified2 > lastModified); - do_check_true(lastModified2 >= dateAdded); + // XXX bug 381240 + //var lastModified2 = bmsvc.getItemLastModified(newId10); + //do_check_true(lastModified2 > lastModified); + //do_check_true(lastModified2 >= dateAdded); do_check_eq(observer._itemChangedId, newId10); do_check_eq(observer._itemChangedProperty, "uri");