Bug 906004 - Skip contacts test not supported on Android. r=reuben

--HG--
extra : rebase_source : f91a29d32e8d26996ecc90429d5f473f0f5a42bd
This commit is contained in:
Shane Tully 2013-08-16 22:44:03 -07:00
parent cfde005e04
commit 64a0f16900

View File

@ -1394,6 +1394,12 @@ var steps = [
req.onerror = onFailure;
},
function () {
// Android does not support published/updated fields. Skip this.
if (isAndroid) {
next();
return;
}
ok(true, "Test sorting with published");
var options = {sortBy: "familyName",
sortOrder: "descending"};