| Index: chrome/test/data/extensions/api_test/bookmarks/test.js
|
| diff --git a/chrome/test/data/extensions/api_test/bookmarks/test.js b/chrome/test/data/extensions/api_test/bookmarks/test.js
|
| index 7ee9b84a1db715f4b041b50b18b158e2512d51a5..5f658ee59e3bdfedd83d97efcce0d7d4868fab30 100644
|
| --- a/chrome/test/data/extensions/api_test/bookmarks/test.js
|
| +++ b/chrome/test/data/extensions/api_test/bookmarks/test.js
|
| @@ -392,8 +392,9 @@ chrome.test.runTests([
|
| expected[0].children[0].children.push(results);
|
| }));
|
| }
|
| - chrome.bookmarks.create(node,
|
| - fail("This request exceeds available quota."));
|
| + chrome.bookmarks.create(
|
| + node,
|
| + fail("This request exceeds the MAX_WRITE_OPERATIONS_PER_HOUR quota."));
|
|
|
| chrome.test.resetQuota();
|
|
|
| @@ -424,7 +425,7 @@ chrome.test.runTests([
|
| ));
|
| }
|
| chrome.bookmarks.update(quota_node1.id, {"title": title},
|
| - fail("This request exceeds available quota."));
|
| + fail("This request exceeds the MAX_WRITE_OPERATIONS_PER_HOUR quota."));
|
|
|
| chrome.test.resetQuota();
|
| },
|
|
|