| Index: chrome/browser/resources/chromeos/chromevox/braille/braille_translator_manager_test.extjs
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/braille/braille_translator_manager_test.extjs b/chrome/browser/resources/chromeos/chromevox/braille/braille_translator_manager_test.extjs
|
| index 24a414f9ebd6364ab8d1dad77aed5fa6562bd6b9..ea5dbddafd05acbea16cf8b5e76ff4991c41e703 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/braille/braille_translator_manager_test.extjs
|
| +++ b/chrome/browser/resources/chromeos/chromevox/braille/braille_translator_manager_test.extjs
|
| @@ -97,7 +97,7 @@ TEST_F('CvoxBrailleTranslatorManagerTest', 'testRefreshWithoutChange',
|
| this.manager.addChangeListener(function() {
|
| assertNotReached('Refresh should not be called without a change.');
|
| });
|
| - this.manager.refresh();
|
| + this.manager.refresh(localStorage['brailleTable']);
|
| });
|
| });
|
|
|
| @@ -107,10 +107,9 @@ TEST_F('CvoxBrailleTranslatorManagerTest', 'testRefreshWithChange',
|
| assertNotEquals(null, this.manager.getExpandingTranslator());
|
| this.addChangeListener(function() {
|
| assertEquals('en-UEB-g2', this.manager.getDefaultTranslator().table.id);
|
| - assertEquals('en-US-comp8',
|
| + assertEquals('en-UEB-g1',
|
| this.manager.getUncontractedTranslator().table.id);
|
| });
|
| - localStorage['brailleTable'] = 'en-UEB-g2';
|
| - this.manager.refresh();
|
| + this.manager.refresh('en-UEB-g2');
|
| });
|
| });
|
|
|