Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/output_test.extjs |
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/output_test.extjs b/chrome/browser/resources/chromeos/chromevox/cvox2/background/output_test.extjs |
index 2425451705c3a54d51e64d147065c4d8c832dce9..8e2709f07c3eda619890628ac384eb333f77240b 100644 |
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/output_test.extjs |
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/output_test.extjs |
@@ -26,7 +26,7 @@ TEST_F('OutputE2ETest', 'RenderBasic', function() { |
function(root) { |
var link = root.firstChild.firstChild; |
var range = cursors.Range.fromNode(link); |
- var o = new Output(range, null, 'navigate'); |
+ var o = new Output().withSpeechAndBraille(range, null, 'navigate'); |
assertEqualsJSON({string_: 'Click here Link', 'spans_': [ |
{value: 'name', start: 0, end: 10}, |
// Link earcon. |
@@ -36,4 +36,3 @@ TEST_F('OutputE2ETest', 'RenderBasic', function() { |
testDone(); |
}.bind(this)); |
}); |
- |