Skip to content

Commit

Permalink
fix jshint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcole committed Jun 5, 2014
1 parent b723d9b commit 9005589
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/livesearch_input_dropdown_test.js
Expand Up @@ -121,7 +121,7 @@
test('able to set metadata with counts and see \'see all\' link', function () {
expect(1);
this.makeServer();
this.applyLivesearchInputDropdown({process_results: function (server_response) {
this.applyLivesearchInputDropdown({process_results: function () {
return { results: ['name'], count: 2 };
}});
this.type();
Expand All @@ -131,7 +131,7 @@
test('no results shows no results div', function () {
expect(1);
this.makeServer();
this.applyLivesearchInputDropdown({process_results: function (server_response) {
this.applyLivesearchInputDropdown({process_results: function () {
return [];
}});
this.type();
Expand Down

0 comments on commit 9005589

Please sign in to comment.