From 8812b6171b6c8e368d867803922317c5b2fcfac8 Mon Sep 17 00:00:00 2001 From: Jamie Humphries Date: Wed, 8 Apr 2015 11:05:34 +0100 Subject: [PATCH] Fix the tests for #1185 fix. --- test/scripts/helpers/search_form.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/scripts/helpers/search_form.js b/test/scripts/helpers/search_form.js index 0d1ef26f6f..1e22a31aa0 100644 --- a/test/scripts/helpers/search_form.js +++ b/test/scripts/helpers/search_form.js @@ -10,21 +10,21 @@ describe('search_form', function(){ it('default', function(){ searchForm().should.eql('
' + '' + - '' + + '' + '
'); }); it('class', function(){ searchForm({class: 'foo'}).should.eql('
' + '' + - '' + + '' + '
'); }); it('text', function(){ searchForm({text: 'Find'}).should.eql('
' + '' + - '' + + '' + '
'); }); @@ -32,7 +32,7 @@ describe('search_form', function(){ searchForm({button: true, text: 'Find'}).should.eql('
' + '' + '' + - '' + + '' + '
'); }); @@ -40,7 +40,7 @@ describe('search_form', function(){ searchForm({button: 'Go', text: 'Find'}).should.eql('
' + '' + '' + - '' + + '' + '
'); }); }); \ No newline at end of file