Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6195)

Unified Diff: chrome/test/data/extensions/api_test/settings/simple_test/background.js

Issue 10871034: Make all quota-exceeding messages in the storage API explain what the failure (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update... the other error message Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/data/extensions/api_test/bookmarks/test.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/extensions/api_test/settings/simple_test/background.js
diff --git a/chrome/test/data/extensions/api_test/settings/simple_test/background.js b/chrome/test/data/extensions/api_test/settings/simple_test/background.js
index 848419576aa733b55804a9a873e3ac064725c823..0ac0b5ea10d9e23294698e44b4311a3ee12e63c1 100644
--- a/chrome/test/data/extensions/api_test/settings/simple_test/background.js
+++ b/chrome/test/data/extensions/api_test/settings/simple_test/background.js
@@ -356,7 +356,8 @@ chrome.test.runTests([
var local = chrome.storage.local;
var sync = chrome.storage.sync;
var test = chrome.test;
- var quotaError = "This request exceeds available quota.";
+ var quotaError =
+ "This request exceeds the MAX_WRITE_OPERATIONS_PER_HOUR quota.";
clearNTimes(local, 1001, test.callbackPass(function() {
clearNTimes(sync, 1001, test.callbackFail(quotaError, function() {
« no previous file with comments | « chrome/test/data/extensions/api_test/bookmarks/test.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698