diff options
| author | Stephen Blott | 2016-01-30 11:02:14 +0000 |
|---|---|---|
| committer | Stephen Blott | 2016-01-30 11:02:14 +0000 |
| commit | c3373252db73430ec466eb0b81a16a5953975e19 (patch) | |
| tree | bf45c911b895d1c1166dbc8ee541e4165cea5e65 /tests | |
| parent | a65ca68a0011fd8f9ab1282db8e85476633c0956 (diff) | |
| parent | 5e65d6bb14c86be2cac95e6d7b61a0fbde1c76cc (diff) | |
| download | vimium-c3373252db73430ec466eb0b81a16a5953975e19.tar.bz2 | |
Merge pull request #1949 from smblott-github/simpler-hint-string
Simplify hint string generation
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/dom_tests/dom_tests.coffee | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/dom_tests/dom_tests.coffee b/tests/dom_tests/dom_tests.coffee index e814ec76..1d4703c1 100644 --- a/tests/dom_tests/dom_tests.coffee +++ b/tests/dom_tests/dom_tests.coffee @@ -149,10 +149,8 @@ context "Alphabetical link hints", document.getElementById("test-div").innerHTML = "" should "label the hints correctly", -> - # TODO(philc): This test verifies the current behavior, but the current behavior is incorrect. - # The output here should be something like aa, ab, b. hintMarkers = getHintMarkers() - expectedHints = ["aa", "ba", "ab"] + expectedHints = ["aa", "b", "ab"] for hint, i in expectedHints assert.equal hint, hintMarkers[i].hintString |
