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

Unified Diff: chrome/browser/resources/chromeos/chromevox/testing/assert_additions.js

Issue 1302763002: Add tests for braille commands. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@js2gtesterr
Patch Set: Document gn template args, rename extra_gen_files to gen_include_files Created 5 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
Index: chrome/browser/resources/chromeos/chromevox/testing/assert_additions.js
diff --git a/chrome/browser/resources/chromeos/chromevox/testing/assert_additions.js b/chrome/browser/resources/chromeos/chromevox/testing/assert_additions.js
index 2811966fe7fe29b4adc6e3fb0ae00bc688858105..c51cbc7c6385e984fe92e0c227aa6ba5a26dfb2d 100644
--- a/chrome/browser/resources/chromeos/chromevox/testing/assert_additions.js
+++ b/chrome/browser/resources/chromeos/chromevox/testing/assert_additions.js
@@ -20,7 +20,7 @@ function assertUndefined(a) {
function assertNotNullNorUndefined(obj, opt_message) {
if (obj === undefined || obj === null) {
throw new Error('Can\'t be null or undefined: ' + (opt_message || '') +
- '\n' + 'Actual: ' + a);
+ '\n' + 'Actual: ' + obj);
}
}

Powered by Google App Engine
This is Rietveld 408576698