Index: chrome/browser/resources/chromeos/chromevox/common/command_store_test.unitjs |
diff --git a/chrome/browser/resources/chromeos/chromevox/common/command_store_test.unitjs b/chrome/browser/resources/chromeos/chromevox/common/command_store_test.unitjs |
index 66ef0081254f2ccff1c0884aac6fab0979c10a09..bb9aa6c1f7d734ef12a27d489385cd7e2b285de8 100644 |
--- a/chrome/browser/resources/chromeos/chromevox/common/command_store_test.unitjs |
+++ b/chrome/browser/resources/chromeos/chromevox/common/command_store_test.unitjs |
@@ -41,13 +41,12 @@ TEST_F('CvoxCommandStoreUnitTest', 'TableData', function() { |
var controllingSpeechCmds = |
cvox.CommandStore.commandsForCategory('controlling_speech'); |
- assertEquals(11, controllingSpeechCmds.length); |
+ assertEquals(10, controllingSpeechCmds.length); |
assertEquals('stopSpeech', controllingSpeechCmds[0]); |
- assertEquals('toggleChromeVox', controllingSpeechCmds[1]); |
- assertEquals('decreaseTtsRate', controllingSpeechCmds[2]); |
- assertEquals('increaseTtsRate', controllingSpeechCmds[3]); |
- assertEquals('decreaseTtsPitch', controllingSpeechCmds[4]); |
- assertEquals('increaseTtsPitch', controllingSpeechCmds[5]); |
+ assertEquals('decreaseTtsRate', controllingSpeechCmds[1]); |
+ assertEquals('increaseTtsRate', controllingSpeechCmds[2]); |
+ assertEquals('decreaseTtsPitch', controllingSpeechCmds[3]); |
+ assertEquals('increaseTtsPitch', controllingSpeechCmds[4]); |
}); |