mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 817339 - Increase isBookmark wait in rc testBookmark; r=wesj
This commit is contained in:
parent
1a22e78be8
commit
ba0fc99da7
@ -108,13 +108,13 @@ public class testBookmark extends PixelTest {
|
||||
try {
|
||||
return isBookmarked == (Boolean)mIsBookmarked.invoke(null, getActivity().getContentResolver(), BOOKMARK_URL);
|
||||
} catch(java.lang.IllegalAccessException ex) {
|
||||
mAsserter.is(true, false, "Can not call addBookmark");
|
||||
mAsserter.is(true, false, "Can not call isBookmarked");
|
||||
} catch(java.lang.reflect.InvocationTargetException ex) {
|
||||
mAsserter.is(true, false, "Error calling addBookmark");
|
||||
mAsserter.is(true, false, "Error calling isBookmarked");
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}, MAX_WAIT_MS);
|
||||
}, 10000);
|
||||
try {
|
||||
Boolean res = (Boolean)mIsBookmarked.invoke(null, getActivity().getContentResolver(), BOOKMARK_URL);
|
||||
return res.booleanValue();
|
||||
|
Loading…
Reference in New Issue
Block a user