From 2cbb4961ce60d75c1535ad65ede5ca74db254cb3 Mon Sep 17 00:00:00 2001 From: Phil Crosby Date: Sat, 2 Jun 2012 20:21:23 -0700 Subject: Remove "action" from Suggestion. That level of genercism isn't needed atm. --- tests/completion_test.coffee | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests') diff --git a/tests/completion_test.coffee b/tests/completion_test.coffee index eb833ecf..b79eae98 100644 --- a/tests/completion_test.coffee +++ b/tests/completion_test.coffee @@ -39,15 +39,15 @@ context "history completer", context "suggestions", should "escape html in page titles", -> - suggestion = new Suggestion(["queryterm"], "tab", "url", "title ", "action") + suggestion = new Suggestion(["queryterm"], "tab", "url", "title ") assert.isTrue suggestion.generateHtml().indexOf("title <span>") >= 0 should "highlight query words", -> - suggestion = new Suggestion(["ninja"], "tab", "url", "ninjawords", "action") + suggestion = new Suggestion(["ninja"], "tab", "url", "ninjawords") assert.isTrue suggestion.generateHtml().indexOf("ninjawords") >= 0 should "shorten urls", -> - suggestion = new Suggestion(["queryterm"], "tab", "http://ninjawords.com", "ninjawords", "action") + suggestion = new Suggestion(["queryterm"], "tab", "http://ninjawords.com", "ninjawords") assert.equal -1, suggestion.generateHtml().indexOf("http://ninjawords.com") Tests.run() \ No newline at end of file -- cgit v1.2.3